Skip to content

Commit

Permalink
fix: apply correct resource profile to service containers (#908)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexplischke authored May 9, 2024
1 parent ba40099 commit e008bd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/imagerunner/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ func SetDefaults(p *Project) {
if service.ResourceProfile == "" {
service.ResourceProfile = "c1m1"
}
suite.Metadata[fmt.Sprintf("resourceProfile-%s", GetCanonicalServiceName(service.Name))] = suite.ResourceProfile
suite.Metadata[fmt.Sprintf("resourceProfile-%s", GetCanonicalServiceName(service.Name))] = service.ResourceProfile
if service.Env == nil {
service.Env = make(map[string]string)
}
Expand Down

0 comments on commit e008bd0

Please sign in to comment.