Skip to content

Commit

Permalink
Merge pull request quarkus-qe#1887 from jcarranzan/fix/amq-reactive-t…
Browse files Browse the repository at this point in the history
…races

Increase the await time and add quarkus.otel.bsp.schedule.delay property in ProdAmqpReactiveIT on messaging-amqp-reactive module  to avoid intermitent error in CI
  • Loading branch information
jedla97 authored Jul 15, 2024
2 parents e405676 + 789bf90 commit b4674c0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ public class ProdAmqpReactiveIT extends BaseAmqpReactiveIT {
static RestService app = new RestService()
.withProperty("amqp-host", amq::getAmqpHost)
.withProperty("amqp-port", () -> "" + amq.getPort())
.withProperty("quarkus.otel.exporter.otlp.traces.endpoint", jaeger::getCollectorUrl);
.withProperty("quarkus.otel.exporter.otlp.traces.endpoint", jaeger::getCollectorUrl)
.withProperty("quarkus.otel.bsp.schedule.delay", "700ms");

private Response resp;

Expand Down

0 comments on commit b4674c0

Please sign in to comment.