Compare commits

...
Author SHA1 Message Date
Andrew Ferlitsch 4b81a2f70d fix: add back missing not 2023-04-04 22:21:24 +00:00
@@ -195,7 +195,7 @@ class BucketCleanupManager(ResourceCleanupManager):
def is_deletable(self, resource: Any) -> bool:
time_difference = self.get_seconds_since_modification(resource)
if self.resource_name(resource).startswith('your-bucket-name'):
if not self.resource_name(resource).startswith('your-bucket-name'):
print(f"Skipping '{resource}' not a Vertex AI notebook bucket")
return False