Przeglądaj źródła

change validate apply default to true (#3639)

ianedwards 2 lat temu
rodzic
commit
bcd2bf1bc6

+ 1 - 0
api/server/handlers/project/create_test.go

@@ -47,6 +47,7 @@ func TestCreateProjectSuccessful(t *testing.T) {
 		HelmValuesEnabled:      false,
 		MultiCluster:           false,
 		EnableReprovision:      false,
+		ValidateApplyV2:        true,
 	}
 
 	gotProject := &types.CreateProjectResponse{}

+ 1 - 1
internal/models/project.go

@@ -70,7 +70,7 @@ var ProjectFeatureFlags = map[FeatureFlagLabel]bool{
 	RDSDatabasesEnabled:    false,
 	SimplifiedViewEnabled:  true,
 	StacksEnabled:          false,
-	ValidateApplyV2:        false,
+	ValidateApplyV2:        true,
 }
 
 type ProjectPlan string