From ee377f5582aad4ce266fccbddc04d3c7a489332b Mon Sep 17 00:00:00 2001 From: oowl Date: Mon, 26 Jun 2023 10:35:42 +0800 Subject: [PATCH] fix(types/operator): fix operation limit error default size (#2536) Signed-off-by: owl --- core/src/types/operator/operator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/types/operator/operator.rs b/core/src/types/operator/operator.rs index 95d934abf4cd..157bf4efdda6 100644 --- a/core/src/types/operator/operator.rs +++ b/core/src/types/operator/operator.rs @@ -83,7 +83,7 @@ impl Operator { .info() .capability() .batch_max_operations - .unwrap_or(100); + .unwrap_or(1000); Self { accessor, limit } }