Skip to content

Commit

Permalink
increase timeout when checking empty in destinations
Browse files Browse the repository at this point in the history
  • Loading branch information
thangqp committed Oct 29, 2023
1 parent 33935c9 commit 2aa9722
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public void tearDown() {
List<String> destinations = List.of(dsFailedDestination, dsResultDestination);

try {
destinations.forEach(destination -> assertNull("Should not be any messages in queue " + destination + " : ", output.receive(100, destination)));
destinations.forEach(destination -> assertNull("Should not be any messages in queue " + destination + " : ", output.receive(1000, destination)));
} finally {
// purge in order to not fail the other tests
output.clear();
Expand Down

0 comments on commit 2aa9722

Please sign in to comment.