Skip to content

Commit

Permalink
Adjust sleep timing for termination
Browse files Browse the repository at this point in the history
  • Loading branch information
seokho-son committed Oct 22, 2024
1 parent 75eb7e8 commit 736c125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/infra/control.go
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ func ControlMciAsync(nsId string, mciId string, action string, force bool) error
wg.Add(1)

// Avoid concurrent requests to CSP.
time.Sleep(time.Millisecond * 800)
time.Sleep(time.Millisecond * 1000)

go ControlVmAsync(&wg, nsId, mciId, vmId, action, results)
}
Expand Down

0 comments on commit 736c125

Please sign in to comment.