Skip to content

Commit

Permalink
destroy_resources bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
vepkenez committed Apr 4, 2022
1 parent f219989 commit 5ee52a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nucypher_ops/ops/fleet_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@ def create_new_node(self, node_name):

def _destroy_resources(self, node_names):

existing_instances = {k: v for k, v in self.get_provider_hosts().items() if k in node_names}
existing_instances = {k: v for k, v in self.get_provider_hosts() if k in node_names}
if existing_instances:
self.emitter.echo(
f"\nAbout to destroy the following: {', '.join(existing_instances.keys())}, including all local data about these nodes.")
Expand Down

0 comments on commit 5ee52a7

Please sign in to comment.