Skip to content

Commit

Permalink
fix(awx/titus): Server group names should be lower case (#4660)
Browse files Browse the repository at this point in the history
* fix(awx/titus): Server group names should be lower case
  • Loading branch information
caseyhebebrand committed Jun 8, 2020
1 parent 49485d0 commit 219e910
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ class AutoScalingWorker {
environment: credentials.environment,
accountType: credentials.accountType,
region: region,
baseName: asgName,
baseName: asgName.toLowerCase(),
suffix: null,
ami: ami,
iamRole: iamRole,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ public SubmitJobRequest toSubmitJobRequest(
.ports(resources.getPorts())
.env(env)
.allocateIpAddress(resources.isAllocateIpAddress())
.stack(stack)
.detail(freeFormDetails)
.stack(stack != null ? stack.toLowerCase() : null)
.detail(freeFormDetails != null ? freeFormDetails.toLowerCase() : null)
.entryPoint(entryPoint)
.iamProfile(iamProfile)
.capacityGroup(capacityGroup)
Expand Down

0 comments on commit 219e910

Please sign in to comment.