Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ private static void assertCustomizer(
}

await()
.atMost(Duration.ofSeconds(1))
.atMost(Duration.ofSeconds(60))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In instrumentation repo waitAndAssertTraces uses awaitility under the hood with default timeout of 10s. While 60s does the job I probably would have started with a lower timeout, like the default 10 or maybe 20.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

.untilAsserted(
() -> {
assertThat(spanExporter.getFinishedSpanItems())
Expand Down
Loading