Compare commits

...

1 Commits

Author SHA1 Message Date
Paige Patton
10ba53574e not equal to gcp
Signed-off-by: Paige Patton <prubenda@redhat.com>
2024-11-15 09:31:09 -07:00

View File

@@ -140,7 +140,7 @@ class NodeActionsScenarioPlugin(AbstractScenarioPlugin):
)
# GCP api doesn't support multiprocessing calls, will only actually run 1
if parallel_nodes and node_scenario['cloud_type'].lower() is not "gcp":
if parallel_nodes and node_scenario['cloud_type'].lower() != "gcp":
self.multiprocess_nodes(nodes, node_scenario_object, action, node_scenario)
else:
for single_node in nodes: