Skip to content

Commit

Permalink
Update to latest vertx-core HTTP client changes
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Nov 9, 2023
1 parent 7681aac commit b99c881
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@ private <T> Future<T> request(
rq.putHeader(TOKEN_HEADER, aclToken);
}
if (timeoutMs > 0) {
rq.timeout(timeoutMs);
rq.idleTimeout(timeoutMs);
}
return rq.sendBuffer(body == null ? Buffer.buffer() : Buffer.buffer(body))
.map(resp -> {
Expand Down

0 comments on commit b99c881

Please sign in to comment.