Skip to content

Commit

Permalink
fix: fixing for mysql
Browse files Browse the repository at this point in the history
  • Loading branch information
tamassoltesz committed Dec 20, 2024
1 parent aa0263c commit d92c1d0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ public void testWithALotOfUsers() throws Exception {

// upload a bunch of users through the API
{
for (int i = 0; i < (NUMBER_OF_USERS_TO_UPLOAD / 10000); i++) {
JsonObject request = generateUsersJson(10000, i * 10000); // API allows 10k users upload at once
for (int i = 0; i < (NUMBER_OF_USERS_TO_UPLOAD / 1000); i++) {
JsonObject request = generateUsersJson(1000, i * 1000); // API allows 10k users upload at once
JsonObject response = uploadBulkImportUsersJson(main, request);
assertEquals("OK", response.get("status").getAsString());
}
Expand Down

0 comments on commit d92c1d0

Please sign in to comment.