We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78d5348 commit 1884212Copy full SHA for 1884212
tests/integration-tests/clusters_factory.py
@@ -182,6 +182,11 @@ def stop(self):
182
try:
183
result = run_pcluster_command(cmd_args, log_error=False, custom_cli_credentials=self.custom_cli_credentials)
184
logging.info("Cluster {0} stopped successfully".format(self.name))
185
+
186
+ # reset cached info
187
+ self.cluster_info = None
188
+ self.login_nodes_info = None
189
190
return result.stdout
191
except subprocess.CalledProcessError as e:
192
logging.error("Failed stopping cluster with error:\n%s\nand output:\n%s", e.stderr, e.stdout)
0 commit comments