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 bb71e0f commit 3a70338Copy full SHA for 3a70338
rust/operator-binary/src/config.rs
@@ -231,7 +231,7 @@ fn append_oidc_config(
231
let endpoint_url = oidc.endpoint_url().context(InvalidOidcEndpointSnafu)?;
232
let mut api_base_url = endpoint_url.as_str().trim_end_matches('/').to_owned();
233
api_base_url.push_str("/protocol/");
234
- let known_config_url = oidc
+ let well_known_config_url = oidc
235
.well_known_config_url()
236
.context(InvalidWellKnownConfigUrlSnafu)?;
237
formatdoc!(
@@ -246,7 +246,7 @@ fn append_oidc_config(
246
'scope': '{scopes}'
247
}},
248
'api_base_url': '{api_base_url}',
249
- 'server_metadata_url': '{known_config_url}',
+ 'server_metadata_url': '{well_known_config_url}',
250
251
}}",
252
scopes = scopes.join(" "),
0 commit comments