mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-16 20:08:09 +00:00
Co-authored-by: stas <statis@microsoft.com>
This commit is contained in:
@ -1059,6 +1059,7 @@ class JobContainers(Endpoint):
|
||||
for container_name in to_keep:
|
||||
self.logger.info("not removing: %s", container_name)
|
||||
|
||||
if len(to_delete) > 0:
|
||||
for container_name in to_delete:
|
||||
if dryrun:
|
||||
self.logger.info("container would be deleted: %s", container_name)
|
||||
@ -1066,6 +1067,8 @@ class JobContainers(Endpoint):
|
||||
self.logger.info("removed container: %s", container_name)
|
||||
else:
|
||||
self.logger.info("container already removed: %s", container_name)
|
||||
else:
|
||||
self.logger.info("nothing to delete")
|
||||
|
||||
|
||||
class JobTasks(Endpoint):
|
||||
|
Reference in New Issue
Block a user