Skip to content

Commit 4d02a31

Browse files
committed
fix: lint
1 parent 5ec6822 commit 4d02a31

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pkg/check/manifest/manifest.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ func (c *Check) Run(ctx context.Context, cluster orchestration.Cluster, opts int
7070

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

7477
if len(clients) < 2 {
7578
return fmt.Errorf("not enough nodes to run feed check")
@@ -322,6 +325,6 @@ func tarFiles(files []bee.File) (*bytes.Buffer, error) {
322325
return nil, err
323326
}
324327
}
325-
328+
326329
return &buf, nil
327330
}

0 commit comments

Comments
 (0)