Skip to content

Commit

Permalink
increase timeout
Browse files Browse the repository at this point in the history
Signed-off-by: tvallin <thibault.vallin@oracle.com>
  • Loading branch information
tvallin committed Mar 6, 2024
1 parent 1fa4f37 commit 3e657e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ void resendAckTestPart2(SeContainer cdi) {
//Check if not acked messages are redelivered
mockConnector.outgoing("mock-conn-channel", String.class)
.requestMax()
.awaitCount(Duration.ofSeconds(5), 1)
.awaitPayloads(Duration.ofSeconds(5), "NO_ACK-1", "NO_ACK-2", "NO_ACK-3");
.awaitCount(Duration.ofMinutes(5), 1)
.awaitPayloads(Duration.ofMinutes(5), "NO_ACK-1", "NO_ACK-2", "NO_ACK-3");
}

@AfterAll
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/jms/src/test/resources/logging.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ java.util.logging.SimpleFormatter.format=%1$tY.%1$tm.%1$td %1$tH:%1$tM:%1$tS %4$

#All log level details
.level=DEBUG
io.helidon.messaging.level=INFO
io.helidon.microprofile.level=INFO
io.helidon.messaging.level=DEBUG
io.helidon.microprofile.level=DEBUG

0 comments on commit 3e657e4

Please sign in to comment.