Skip to content

Commit

Permalink
fix(act): fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
Ferenc Sárai committed Jul 19, 2024
1 parent 1f18b1d commit dee6d70
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/check/act/act.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,10 @@ func (c *Check) Run(ctx context.Context, cluster orchestration.Cluster, opts int
}

// upload act file
upClient.UploadActFile(ctx, &file, api.UploadOptions{BatchID: batchID})
uErr := upClient.UploadActFile(ctx, &file, api.UploadOptions{BatchID: batchID})
if uErr != nil {
return fmt.Errorf("node %s: %w", upNodeName, uErr)
}

time.Sleep(3 * time.Second)

Expand Down

0 comments on commit dee6d70

Please sign in to comment.