Skip to content

Commit

Permalink
Fix #1042: increase DEFAULT_MAX_DOCUMENT_INSERT_COUNT to 100 (from …
Browse files Browse the repository at this point in the history
…20) (#1043)
  • Loading branch information
tatu-at-datastax authored Apr 29, 2024
1 parent 81d7a52 commit eac4dc2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ public interface OperationsConfig {

/**
* Defines the default maximum documents to insert setting for {@code InsertMany} command;
* defaults to 20
* defaults to 100
*/
public static final int DEFAULT_MAX_DOCUMENT_INSERT_COUNT = 20;
public static final int DEFAULT_MAX_DOCUMENT_INSERT_COUNT = 100;

/** @return Defines the default document page size, defaults to <code>20</code>. */
@Max(500)
Expand Down

0 comments on commit eac4dc2

Please sign in to comment.