Skip to content

Commit

Permalink
Use default value from quarkus.http.read-timeout in RESTEasy Reactive
Browse files Browse the repository at this point in the history
  • Loading branch information
Sgitario committed May 16, 2023
1 parent cc0531b commit fe1f955
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 fe1f955

Please sign in to comment.