We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 973257a commit aa3edefCopy full SHA for aa3edef
src/Temporalio/Bridge/src/client.rs
@@ -525,7 +525,8 @@ impl TryFrom<&ClientOptions> for CoreClientOptions {
525
} else {
526
Some(opts.metadata.to_string_map_on_newlines())
527
})
528
- .api_key(opts.api_key.to_option_string());
+ .api_key(opts.api_key.to_option_string())
529
+ .http_connect_proxy(unsafe { opts.http_connect_proxy_options.as_ref() }.map(Into::into));
530
if let Some(tls_config) = unsafe { opts.tls_options.as_ref() } {
531
opts_builder.tls_cfg(tls_config.try_into()?);
532
}
0 commit comments