From 736c12501dbef68eab4d068ef6b2c5e6dcc3e419 Mon Sep 17 00:00:00 2001 From: Seokho Son Date: Wed, 23 Oct 2024 00:41:25 +0900 Subject: [PATCH] Adjust sleep timing for termination --- src/core/infra/control.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/infra/control.go b/src/core/infra/control.go index a1e8a4aa9..f6ecde6b7 100644 --- a/src/core/infra/control.go +++ b/src/core/infra/control.go @@ -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) }