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 1149577 commit 5030f05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/check/act/act.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ func (c *Check) Run(ctx context.Context, cluster orchestration.Cluster, opts int
if !ok {
return fmt.Errorf("invalid options type")
}
c.logger.Infof("act check started %+v", o)

clients, err := cluster.NodesClients(ctx)
if err != nil {
Expand Down Expand Up @@ -111,6 +110,7 @@ func (c *Check) Run(ctx context.Context, cluster orchestration.Cluster, opts int
return fmt.Errorf("node %s: %w", upNodeName, uErr)
}
c.logger.Info("ACT file uploaded")
time.Sleep(1 * time.Second)

// download act file
// ----------------------------------------------
Expand Down

0 comments on commit 5030f05

Please sign in to comment.