Skip to content

Commit

Permalink
HSEARCH-4157 Raise the timeout on v5 migrated test
Browse files Browse the repository at this point in the history
  • Loading branch information
fax4ever authored and yrodiere committed Feb 18, 2021
1 parent c53abc5 commit 843e740
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -57,7 +57,8 @@ public void testConcurrency() throws Exception {
numberOfThreads,
i -> ( i % 2 == 0 ) ? work : reverseWork
)
.setTimeout( 1, TimeUnit.MINUTES )
// in some machine (e.g. Mac) this call may take more than 2 minutes
.setTimeout( 3, TimeUnit.MINUTES )
.execute();

System.out.println(
Expand Down

0 comments on commit 843e740

Please sign in to comment.