Skip to content

Commit

Permalink
Change async HTTP timeout to 30 secs.
Browse files Browse the repository at this point in the history
  • Loading branch information
micli committed Oct 10, 2020
1 parent c6bb1a8 commit 709b49a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public void onInboundPublish(final @NotNull PublishInboundInput publishInboundIn
return; // Ignore no data calls.

final Async<PublishInboundOutput> outputAsyncResult =
publishInboundOutput.async(Duration.ofSeconds(8), TimeoutFallback.FAILURE); // Default timeout is 8 secs.
publishInboundOutput.async(Duration.ofSeconds(30), TimeoutFallback.FAILURE); // Default timeout is 30 secs.

final CompletableFuture<?> task = Services.extensionExecutorService().submit(() -> {

Expand Down

0 comments on commit 709b49a

Please sign in to comment.