Skip to content

Commit

Permalink
wrtc-lt/orch: Increase timeout for deleting VM group
Browse files Browse the repository at this point in the history
VMs are buuuuuuulky
  • Loading branch information
victorges committed Nov 30, 2023
1 parent 6eaddcd commit 2fc7d4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/webrtc-load-tester/gcloud/compute.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func CreateVMGroup(ctx context.Context, spec VMTemplateSpec, templateURL, region
// DeleteVMGroup deletes a VM group and waits for the operation to complete. It
// doesn't receive a ctx because it's meant to run as a cleanup on shutdown.
func DeleteVMGroup(region, groupName string) {
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Minute)
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Minute)
defer cancel()

glog.Infof("Deleting VM group: %s", groupName)
Expand Down

0 comments on commit 2fc7d4a

Please sign in to comment.