Skip to content

Commit

Permalink
Merge pull request #39333 from gsmet/min-chunk-size-3.8
Browse files Browse the repository at this point in the history
[3.8] Fix RESTEasy Reactive configuration mismatch for minChunkSize
  • Loading branch information
gsmet authored Mar 12, 2024
2 parents 002a0ed + b0d7c18 commit cc67549
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1444,7 +1444,7 @@ private org.jboss.resteasy.reactive.common.ResteasyReactiveConfig createRestReac

return new org.jboss.resteasy.reactive.common.ResteasyReactiveConfig(
getEffectivePropertyValue("input-buffer-size", config.inputBufferSize().asLongValue(), Long.class, mpConfig),
getEffectivePropertyValue("min-chunk-size", config.outputBufferSize(), Integer.class, mpConfig),
getEffectivePropertyValue("min-chunk-size", config.minChunkSize(), Integer.class, mpConfig),
getEffectivePropertyValue("output-buffer-size", config.outputBufferSize(), Integer.class, mpConfig),
getEffectivePropertyValue("single-default-produces", config.singleDefaultProduces(), Boolean.class, mpConfig),
getEffectivePropertyValue("default-produces", config.defaultProduces(), Boolean.class, mpConfig));
Expand Down

0 comments on commit cc67549

Please sign in to comment.