Skip to content

Commit

Permalink
fix(types/operator): fix operation limit error default size
Browse files Browse the repository at this point in the history
Signed-off-by: owl <ouyangjun1999@gmail.com>
  • Loading branch information
oowl committed Jun 25, 2023
1 parent 65898d3 commit 8eb06d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/types/operator/operator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ impl Operator {
.info()
.capability()
.batch_max_operations
.unwrap_or(100);
.unwrap_or(1000);
Self { accessor, limit }
}

Expand Down

0 comments on commit 8eb06d4

Please sign in to comment.