Skip to content

Commit

Permalink
chore: attempting to get some buckets cleanup info
Browse files Browse the repository at this point in the history
  • Loading branch information
BenWhitehead committed Sep 25, 2024
1 parent a8d7657 commit d295f2c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void verboseBucketCleanup() throws Exception {
OffsetDateTime ctime = bucket.getCreateTimeOffsetDateTime();
String action = null;
try {
if (ctime.isBefore(_3DaysAgo)) {
if (name.startsWith("gcloud-test") && ctime.isBefore(_3DaysAgo)) {
action = "Cleaning up";
return exec.<Void>submit(() -> {
BucketCleaner.doCleanup(name, s, ctrl);
Expand Down

0 comments on commit d295f2c

Please sign in to comment.