Skip to content

Commit

Permalink
Add suffic to compose project names
Browse files Browse the repository at this point in the history
  • Loading branch information
mrodm committed May 20, 2024
1 parent 99ad2d6 commit 2ba7399
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/servicedeployer/custom_agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func (d *CustomAgentDeployer) SetUp(ctx context.Context, svcInfo ServiceInfo) (D

service := dockerComposeDeployedService{
ymlPaths: ymlPaths,
project: "elastic-package-service",
project: fmt.Sprintf("elastic-package-service-%s", svcInfo.Test.RunID),
variant: ServiceVariant{
Name: dockerCustomAgentName,
Env: env,
Expand Down
2 changes: 1 addition & 1 deletion internal/servicedeployer/terraform.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ func (tsd TerraformServiceDeployer) SetUp(ctx context.Context, svcInfo ServiceIn

service := dockerComposeDeployedService{
ymlPaths: ymlPaths,
project: "elastic-package-service",
project: fmt.Sprintf("elastic-package-service-%s", svcInfo.Test.RunID),
env: tfEnvironment,
shutdownTimeout: 300 * time.Second,
}
Expand Down

0 comments on commit 2ba7399

Please sign in to comment.