Skip to content

Commit

Permalink
Fix hound issue
Browse files Browse the repository at this point in the history
  • Loading branch information
aduffeck committed Jun 19, 2023
1 parent 6042a58 commit 9b6d7e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/storage/utils/decomposedfs/spaces.go
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ func (fs *Decomposedfs) ListStorageSpaces(ctx context.Context, filter []*provide
// Distribute work
errg.Go(func() error {
defer close(work)
for match, _ := range matches {
for match := range matches {
select {
case work <- match:
case <-ctx.Done():
Expand Down

0 comments on commit 9b6d7e4

Please sign in to comment.