Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
acha-bill committed Jan 23, 2025
1 parent 5ec6822 commit 4d02a31
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/check/manifest/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ func (c *Check) Run(ctx context.Context, cluster orchestration.Cluster, opts int

rnd := random.PseudoGenerator(o.Seed)
clients, err := cluster.ShuffledFullNodeClients(ctx, rnd)
if err != nil {
return fmt.Errorf("node clients shuffle: %w", err)
}

if len(clients) < 2 {
return fmt.Errorf("not enough nodes to run feed check")
Expand Down Expand Up @@ -322,6 +325,6 @@ func tarFiles(files []bee.File) (*bytes.Buffer, error) {
return nil, err
}
}

return &buf, nil
}

0 comments on commit 4d02a31

Please sign in to comment.