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 1212f6f commit 8c12c98Copy full SHA for 8c12c98
1 file changed
rust/operator-binary/src/config.rs
@@ -235,10 +235,9 @@ fn append_oidc_config(
235
.well_known_config_url()
236
.context(InvalidWellKnownConfigUrlSnafu)?;
237
238
- let client_auth_method = serde_json::to_value(
239
- client_options.client_authentication_method,
240
- )
241
- .expect("ClientAuthenticationMethod should serialize to JSON");
+ let client_auth_method =
+ serde_json::to_value(client_options.client_authentication_method)
+ .expect("ClientAuthenticationMethod should serialize to JSON");
242
let client_auth_method = client_auth_method
243
.as_str()
244
.expect("ClientAuthenticationMethod should serialize to a string");
0 commit comments