Skip to content

Commit

Permalink
Increase default level of feedback/confirmation in destructive commands
Browse files Browse the repository at this point in the history
  • Loading branch information
stas committed Sep 24, 2021
1 parent d13ce06 commit 1480322
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions src/cli/onefuzz/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1059,13 +1059,16 @@ def delete(
for container_name in to_keep:
self.logger.info("not removing: %s", container_name)

for container_name in to_delete:
if dryrun:
self.logger.info("container would be deleted: %s", container_name)
elif self.onefuzz.containers.delete(container_name).result:
self.logger.info("removed container: %s", container_name)
else:
self.logger.info("container already removed: %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)
elif self.onefuzz.containers.delete(container_name).result:
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):
Expand Down

0 comments on commit 1480322

Please sign in to comment.