diff --git a/node/log_entry_sync/src/sync_manager/log_query.rs b/node/log_entry_sync/src/sync_manager/log_query.rs index ce53bd4..2aea177 100644 --- a/node/log_entry_sync/src/sync_manager/log_query.rs +++ b/node/log_entry_sync/src/sync_manager/log_query.rs @@ -14,7 +14,7 @@ use thiserror::Error; pub(crate) type PinBoxFut<'a, T> = Pin> + Send + 'a>>; -const TOO_MANY_LOGS_ERROR_MSG: [&str; 2] = ["query returned more than", "too large with more than"]; +const TOO_MANY_LOGS_ERROR_MSG: [&str; 2] = ["exceeds the max limit of", "too large with more than"]; /// A log query provides streaming access to historical logs via a paginated /// request. For streaming access to future logs, use [`Middleware::watch`] or