Skip to content

Commit 3a70338

Browse files
committed
Rename known_config_url -> well_known_config_url
1 parent bb71e0f commit 3a70338

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rust/operator-binary/src/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ fn append_oidc_config(
231231
let endpoint_url = oidc.endpoint_url().context(InvalidOidcEndpointSnafu)?;
232232
let mut api_base_url = endpoint_url.as_str().trim_end_matches('/').to_owned();
233233
api_base_url.push_str("/protocol/");
234-
let known_config_url = oidc
234+
let well_known_config_url = oidc
235235
.well_known_config_url()
236236
.context(InvalidWellKnownConfigUrlSnafu)?;
237237
formatdoc!(
@@ -246,7 +246,7 @@ fn append_oidc_config(
246246
'scope': '{scopes}'
247247
}},
248248
'api_base_url': '{api_base_url}',
249-
'server_metadata_url': '{known_config_url}',
249+
'server_metadata_url': '{well_known_config_url}',
250250
}},
251251
}}",
252252
scopes = scopes.join(" "),

0 commit comments

Comments
 (0)