From 6edc4c4fc822763992e33ab2dbeafbfeee0de1c8 Mon Sep 17 00:00:00 2001 From: Guillaume Bouvignies Date: Wed, 7 Feb 2024 14:04:23 +0100 Subject: [PATCH] fix: Main compile breaks (#3169) --- backend/Cargo.toml | 2 +- backend/windmill-api/src/saml.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/Cargo.toml b/backend/Cargo.toml index c8575fbe6a..e90b770804 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -198,7 +198,7 @@ tokio-postgres = {version = "^0.7", features = ["array-impls", "with-serde_json- mysql_async = { version = "*", default-features = false, features = ["minimal", "default", "native-tls-tls"]} postgres-native-tls = "^0" native-tls = "^0" -samael = { version="0.0.14", features = ["xmlsec"] } +samael = { version = "0.0.14", features = ["xmlsec"] } gcp_auth = "0.9.0" rust_decimal = { version = "^1", features = ["db-postgres"]} jsonwebtoken = "8.3.0" diff --git a/backend/windmill-api/src/saml.rs b/backend/windmill-api/src/saml.rs index e43e2bf8a7..9fcd361dfd 100644 --- a/backend/windmill-api/src/saml.rs +++ b/backend/windmill-api/src/saml.rs @@ -65,7 +65,7 @@ pub async fn build_sp_extension() -> anyhow::Result { ..ContactPerson::default() }) .idp_metadata(idp_metadata) - .acs_url(acs_url) + .acs_url(acs_url.clone()) .build()?; tracing::info!("SAML Configured - ACS url is {}", acs_url);