From 83c4829b29e4e5f11d3229cde315ee9d62b93a15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferenc=20S=C3=A1rai?= Date: Wed, 31 Jul 2024 19:40:16 +0200 Subject: [PATCH] feat(act): add sleeps --- pkg/check/act/act.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/check/act/act.go b/pkg/check/act/act.go index 62873ca38..c1d89964a 100644 --- a/pkg/check/act/act.go +++ b/pkg/check/act/act.go @@ -176,6 +176,7 @@ func (c *Check) Run(ctx context.Context, cluster orchestration.Cluster, opts int return fmt.Errorf("node %s: GetActGrantees: addresses length is not 2", upNodeName) } c.logger.Info("ACT grantees listed") + time.Sleep(5 * time.Second) // download act file with the publisher after create grantees // ---------------------------------------------- @@ -247,6 +248,7 @@ func (c *Check) Run(ctx context.Context, cluster orchestration.Cluster, opts int return fmt.Errorf("node %s: GetActGrantees after patch: addresses length is not 1", upNodeName) } c.logger.Info("ACT grantees listed after patch") + time.Sleep(5 * time.Second) // download act file with the not enabled grantee after patch //----------------------------------------------