commit 886223ac7672fbac7582d4dc353dfbb523ef64ae
parent 1411e9d452f2ed50e2db671de82f59a1cb7da633
Author: triesap <tyson@radroots.org>
Date: Mon, 15 Jun 2026 14:20:40 -0700
event-store: raise projection query limit
Align the event-store projection query limit with the SDK v1 order status contract so local order status reads can request up to one thousand events.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/crates/event_store/src/store.rs b/crates/event_store/src/store.rs
@@ -22,7 +22,7 @@ use sqlx::{Row, SqlitePool};
use std::path::Path;
use std::str::FromStr;
-pub const RADROOTS_EVENT_STORE_QUERY_LIMIT_MAX: u32 = 500;
+pub const RADROOTS_EVENT_STORE_QUERY_LIMIT_MAX: u32 = 1_000;
pub const RADROOTS_EVENT_STORE_CONTRACT_QUERY_LIMIT_MAX: usize = 16;
#[derive(Clone)]