Skip to content

Commit

Permalink
Add missing alpn config key handling from named config
Browse files Browse the repository at this point in the history
Fixes: #38514
  • Loading branch information
geoand committed Feb 1, 2024
1 parent 668284e commit 8ffcb94
Showing 1 changed file with 1 addition and 0 deletions.
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 8ffcb94

Please sign in to comment.