Skip to content

Commit

Permalink
Merge pull request quarkusio#38516 from geoand/quarkusio#38514
Browse files Browse the repository at this point in the history
Add missing alpn config key handling from named config
  • Loading branch information
gsmet authored Feb 1, 2024
2 parents f23349c + 8ffcb94 commit 432ee1e
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,7 @@ public static RestClientConfig load(String configKey) {
instance.userAgent = getConfigValue(configKey, "user-agent", String.class);
instance.http2 = getConfigValue(configKey, "http2", Boolean.class);
instance.maxChunkSize = getConfigValue(configKey, "max-chunk-size", MemorySize.class);
instance.alpn = getConfigValue(configKey, "alpn", Boolean.class);
instance.captureStacktrace = getConfigValue(configKey, "capture-stacktrace", Boolean.class);

instance.multipart = new RestClientMultipartConfig();
Expand Down

0 comments on commit 432ee1e

Please sign in to comment.