Skip to content

Commit

Permalink
change validate apply default to true (#3639)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianedwards authored Sep 25, 2023
1 parent b4cc313 commit bcd2bf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions api/server/handlers/project/create_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ func TestCreateProjectSuccessful(t *testing.T) {
HelmValuesEnabled: false,
MultiCluster: false,
EnableReprovision: false,
ValidateApplyV2: true,
}

gotProject := &types.CreateProjectResponse{}
Expand Down
2 changes: 1 addition & 1 deletion internal/models/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ var ProjectFeatureFlags = map[FeatureFlagLabel]bool{
RDSDatabasesEnabled: false,
SimplifiedViewEnabled: true,
StacksEnabled: false,
ValidateApplyV2: false,
ValidateApplyV2: true,
}

type ProjectPlan string
Expand Down

0 comments on commit bcd2bf1

Please sign in to comment.