Skip to content

Commit

Permalink
Merge pull request quarkusio#33398 from Sgitario/32992
Browse files Browse the repository at this point in the history
Use default value from `quarkus.http.read-timeout` in RESTEasy Reactive
  • Loading branch information
Sgitario authored May 16, 2023
2 parents 3e6b2a5 + fe1f955 commit 67644b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ public InputStream createInputStream() {
context.getBody().getBytes(data);
return new ByteArrayInputStream(data);
}
return new VertxInputStream(context, 10000, this);
return new VertxInputStream(context, getDeployment().getRuntimeConfiguration().readTimeout().toMillis(), this);
}

@Override
Expand Down

0 comments on commit 67644b6

Please sign in to comment.