diff --git a/backend/windmill-worker/src/python_executor.rs b/backend/windmill-worker/src/python_executor.rs index 3e60949241..249e4d1a76 100644 --- a/backend/windmill-worker/src/python_executor.rs +++ b/backend/windmill-worker/src/python_executor.rs @@ -44,7 +44,7 @@ const NSJAIL_CONFIG_RUN_PYTHON3_CONTENT: &str = include_str!("../nsjail/run.pyth const RELATIVE_PYTHON_LOADER: &str = include_str!("../loader.py"); #[cfg(feature = "enterprise")] -use crate::global_cache::pull_from_tar; +use crate::global_cache::{build_tar_and_push, pull_from_tar}; #[cfg(feature = "enterprise")] use crate::S3_CACHE_BUCKET; @@ -54,7 +54,6 @@ use crate::{ create_args_and_out_file, get_reserved_variables, handle_child, read_result, set_logs, start_child_process, write_file, }, - global_cache::build_tar_and_push, AuthedClientBackgroundTask, DISABLE_NSJAIL, DISABLE_NUSER, HTTPS_PROXY, HTTP_PROXY, LOCK_CACHE_DIR, NO_PROXY, NSJAIL_PATH, PATH_ENV, PIP_CACHE_DIR, PIP_EXTRA_INDEX_URL, TZ_ENV, };