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 b0fa449 commit 4f93135Copy full SHA for 4f93135
crates/stackable-operator/src/commons/authentication/oidc.rs
@@ -157,7 +157,7 @@ impl AuthenticationProvider {
157
///
158
/// It is basically the [`Self::endpoint_url`] joined with
159
/// "./.well-known/openid-configuration", while watching out for URL joining madness.
160
- pub fn well_known_url(&self) -> Result<Url> {
+ pub fn well_known_config_url(&self) -> Result<Url> {
161
let mut url = self.base_url()?;
162
163
// Url::join cuts of the part after the last slash :/
@@ -431,7 +431,7 @@ mod test {
431
.unwrap();
432
433
assert_eq!(
434
- oidc.well_known_url().unwrap().as_str(),
+ oidc.well_known_config_url().unwrap().as_str(),
435
expected_well_known_url
436
);
437
}
0 commit comments