Skip to content

Commit c646c9d

Browse files
committed
Don't filter buckets
1 parent aa0ca8f commit c646c9d

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

tools/storage-advisor/src/s3Issues.go

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -552,12 +552,8 @@ func listBuckets(s3client *s3.Client) ([]Bucket, error) {
552552

553553
buckets := make([]Bucket, 0, len(bucketNames))
554554
for _, bucket := range bucketNames {
555-
// For testing, only focus on interesting buckets
556-
if strings.HasPrefix(bucket, "joom-analytics-") {
557-
buckets = append(buckets, Bucket{Name: bucket})
558-
}
555+
buckets = append(buckets, Bucket{Name: bucket})
559556
}
560-
buckets = buckets[0:10]
561557
return buckets, nil
562558
}
563559

0 commit comments

Comments
 (0)