Skip to content

Commit c7b6959

Browse files
committed
chore: Upgrade stackable-operator to 0.110.1
1 parent e705399 commit c7b6959

3 files changed

Lines changed: 15 additions & 20 deletions

File tree

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ product-config = { git = "https://github.com/stackabletech/product-config.git",
1414
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", features = [
1515
"crds",
1616
"webhook",
17-
], tag = "stackable-operator-0.110.0" }
17+
], tag = "stackable-operator-0.110.1" }
1818

1919
anyhow = "1.0"
2020
built = { version = "0.8", features = ["chrono", "git2"] }

rust/operator-binary/src/config.rs

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -237,15 +237,10 @@ fn append_oidc_config(
237237
.well_known_config_url()
238238
.context(InvalidWellKnownConfigUrlSnafu)?;
239239

240-
let client_auth_method = serde_json::to_value(
241-
client_options
242-
.product_specific_fields
243-
.client_authentication_method,
244-
)
245-
.expect("ClientAuthenticationMethod should serialize to JSON");
246-
let client_auth_method = client_auth_method
247-
.as_str()
248-
.expect("ClientAuthenticationMethod should serialize to a string");
240+
let client_auth_method = client_options
241+
.product_specific_fields
242+
.client_authentication_method
243+
.as_ref();
249244

250245
formatdoc!(
251246
"

0 commit comments

Comments
 (0)