diff --git a/backend/ee-repo-ref.txt b/backend/ee-repo-ref.txt index 49a9a97ac9..cece308476 100644 --- a/backend/ee-repo-ref.txt +++ b/backend/ee-repo-ref.txt @@ -1 +1 @@ -4ea7711207b13b9620c07aafde6f5a710476cd38 \ No newline at end of file +0a0cd2813128efd41979fbe73245d46402376a2f \ No newline at end of file diff --git a/backend/windmill-api/src/ee_oss.rs b/backend/windmill-api/src/ee_oss.rs index e119e88274..2ac953c9f6 100644 --- a/backend/windmill-api/src/ee_oss.rs +++ b/backend/windmill-api/src/ee_oss.rs @@ -13,7 +13,10 @@ use anyhow::anyhow; #[cfg(all(feature = "enterprise", not(feature = "private")))] use {std::sync::Arc, tokio::sync::RwLock}; #[cfg(not(feature = "private"))] -pub async fn validate_license_key(_license_key: String, _db: &DB) -> anyhow::Result<(String, bool)> { +pub async fn validate_license_key( + _license_key: String, + _db: &crate::db::DB, +) -> anyhow::Result<(String, bool)> { // Implementation is not open source Err(anyhow!("License can't be validated in Windmill CE")) }