Skip to content

Commit 0c67b4e

Browse files
committed
Increase atMost condition to at most 45 seconds
Signed-off-by: Matheus Cruz <[email protected]>
1 parent 8f11972 commit 0c67b4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk-tests/src/test/java/io/dapr/it/testcontainers/pubsub/outbox/DaprPubSubOutboxIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public void shouldPublishUsingOutbox() throws Exception {
129129

130130
client.executeStateTransaction(transactionRequest).block();
131131

132-
Awaitility.await().atMost(Duration.ofSeconds(10))
132+
Awaitility.await().atMost(Duration.ofSeconds(45))
133133
.ignoreExceptions()
134134
.untilAsserted(() -> Assertions.assertThat(productWebhookController.getEventList()).isNotEmpty());
135135
}

0 commit comments

Comments
 (0)