Skip to content

Commit ee377f5

Browse files
authored
fix(types/operator): fix operation limit error default size (#2536)
Signed-off-by: owl <[email protected]>
1 parent 19e5b98 commit ee377f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/types/operator/operator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ impl Operator {
8383
.info()
8484
.capability()
8585
.batch_max_operations
86-
.unwrap_or(100);
86+
.unwrap_or(1000);
8787
Self { accessor, limit }
8888
}
8989

0 commit comments

Comments
 (0)