From 39c9b467fbaff8dcd444b277ff80edcbeca8272b Mon Sep 17 00:00:00 2001 From: pan93412 Date: Fri, 19 Jan 2024 14:04:06 +0800 Subject: [PATCH] =?UTF-8?q?fix(utils):=20FORCE=5FCONTAINERIZED=20=E2=86=92?= =?UTF-8?q?=20false?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/utils/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/utils/config.go b/internal/utils/config.go index 89f75d7c..54583573 100644 --- a/internal/utils/config.go +++ b/internal/utils/config.go @@ -16,7 +16,7 @@ import ( func GetExplicitServerlessConfig(config plan.ImmutableProjectConfiguration) optional.Option[bool] { fcEnv := os.Getenv("FORCE_CONTAINERIZED") if fcEnv == "true" || fcEnv == "1" { - return optional.Some(true) + return optional.Some(false) } zsEnv := os.Getenv("ZBPACK_SERVERLESS")