From 549f32c003b937cd9314b00d76cf07c7dd8065fe Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Mon, 16 Feb 2026 16:12:02 +0000 Subject: [PATCH] fix private check issue --- backend/windmill-store/src/oauth_refresh_oss.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/backend/windmill-store/src/oauth_refresh_oss.rs b/backend/windmill-store/src/oauth_refresh_oss.rs index 4bcc85fe93..7402e66e49 100644 --- a/backend/windmill-store/src/oauth_refresh_oss.rs +++ b/backend/windmill-store/src/oauth_refresh_oss.rs @@ -9,9 +9,6 @@ #[cfg(feature = "private")] pub use crate::oauth_refresh_ee::_refresh_token; -#[cfg(feature = "private")] -pub use crate::oauth_refresh_ee::_refresh_workspace_integration_token; - #[cfg(not(feature = "private"))] use sqlx::{Postgres, Transaction}; #[cfg(not(feature = "private"))]