Skip to content

Commit

Permalink
corrected stack resource name
Browse files Browse the repository at this point in the history
  • Loading branch information
numcys committed Nov 4, 2024
1 parent 1baf722 commit 68f39ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion provider/aws/processes.go
Original file line number Diff line number Diff line change
Expand Up @@ -1192,7 +1192,7 @@ func (p *Provider) generateTaskDefinition2(app, service string, opts structs.Pro
}
}

td, err := p.stackResource(fmt.Sprintf("%s-%s", p.Rack, app), fmt.Sprintf("Service-%s",service))
td, err := p.stackResource(fmt.Sprintf("%s-%s", p.Rack, app), fmt.Sprintf("Service%s", upperName(service)))
if err != nil {
return nil, err

Check warning on line 1197 in provider/aws/processes.go

View check run for this annotation

Codecov / codecov/patch

provider/aws/processes.go#L1195-L1197

Added lines #L1195 - L1197 were not covered by tests
}
Expand Down

0 comments on commit 68f39ea

Please sign in to comment.