Skip to content

Commit

Permalink
GEODE-2063: Increased the timeout on async thread join
Browse files Browse the repository at this point in the history
	* Increase the time for the main thread to wait for the async operation to complete.
  • Loading branch information
nabarunnag committed Nov 7, 2016
1 parent 0a96cbd commit a20a6ba
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,12 @@ public void endQuery() {
}
});

ThreadUtils.join(a1, 6000);
ThreadUtils.join(a1, 120000);

if (a1.exceptionOccurred()) {
fail(a1.getException().getMessage());
}
ThreadUtils.join(a2, 6000);
ThreadUtils.join(a2, 120000);
if (a2.exceptionOccurred()) {
fail(a2.getException().getMessage());
}
Expand Down

0 comments on commit a20a6ba

Please sign in to comment.