Skip to content

Commit

Permalink
feat(act): add sleeps
Browse files Browse the repository at this point in the history
  • Loading branch information
Ferenc Sárai committed Jul 31, 2024
1 parent 5030f05 commit 83c4829
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/check/act/act.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
// ----------------------------------------------
Expand Down Expand Up @@ -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
//----------------------------------------------
Expand Down

0 comments on commit 83c4829

Please sign in to comment.