From 8842319805802a3cd3f8a2544268212e20591cae Mon Sep 17 00:00:00 2001 From: liqiang-fit2cloud Date: Fri, 4 Jul 2025 14:53:01 +0800 Subject: [PATCH] fix: fix sandbox_path. --- apps/common/utils/function_code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/utils/function_code.py b/apps/common/utils/function_code.py index 41d2af1a5..a4bd97510 100644 --- a/apps/common/utils/function_code.py +++ b/apps/common/utils/function_code.py @@ -23,7 +23,7 @@ class FunctionExecutor: def __init__(self, sandbox=False): self.sandbox = sandbox if sandbox: - self.sandbox_path = '/opt/maxkb/app/sandbox' + self.sandbox_path = '/opt/maxkb-app/sandbox' self.user = 'sandbox' else: self.sandbox_path = os.path.join(PROJECT_DIR, 'data', 'sandbox')