fix: Main compile breaks (#3169)

This commit is contained in:
Guillaume Bouvignies
2024-02-07 14:04:23 +01:00
committed by GitHub
parent 812516bb06
commit 6edc4c4fc8
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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"
+1 -1
View File
@@ -65,7 +65,7 @@ pub async fn build_sp_extension() -> anyhow::Result<ServiceProviderExt> {
..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);