Skip to content

Commit 7a78d59

Browse files
authored
Merge pull request #402 from stelligent/issue-401
Issue #401 - Mismatch ScalingMaxCapacity and ScalingMaxSize
2 parents d20bb9a + c41712e commit 7a78d59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

workflows/database_upsert.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ func (workflow *databaseWorkflow) databaseDeployer(namespace string, service *co
143143
common.NewMapElementIfNotEmpty(stackParams, "DatabaseInstanceClass", dbConfig.InstanceClass)
144144
common.NewMapElementIfNotEmpty(stackParams, "DatabaseStorage", dbConfig.AllocatedStorage)
145145

146-
common.NewMapElementIfNotEmpty(stackParams, "ScalingMinSize", dbConfig.MinSize)
147-
common.NewMapElementIfNotEmpty(stackParams, "ScalingMaxSize", dbConfig.MaxSize)
146+
common.NewMapElementIfNotEmpty(stackParams, "ScalingMinCapacity", dbConfig.MinSize)
147+
common.NewMapElementIfNotEmpty(stackParams, "ScalingMaxCapacity", dbConfig.MaxSize)
148148
common.NewMapElementIfNotEmpty(stackParams, "SecondsUntilAutoPause", dbConfig.SecondsUntilAutoPause)
149149

150150
stackParams["DatabaseMasterUsername"] = "admin"

0 commit comments

Comments
 (0)