We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa0ca8f commit c646c9dCopy full SHA for c646c9d
1 file changed
tools/storage-advisor/src/s3Issues.go
@@ -552,12 +552,8 @@ func listBuckets(s3client *s3.Client) ([]Bucket, error) {
552
553
buckets := make([]Bucket, 0, len(bucketNames))
554
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
- }
+ buckets = append(buckets, Bucket{Name: bucket})
559
}
560
- buckets = buckets[0:10]
561
return buckets, nil
562
563
0 commit comments