Skip to content

Commit

Permalink
reducing log
Browse files Browse the repository at this point in the history
  • Loading branch information
mukrishn committed Nov 2, 2023
1 parent 28b819c commit 08ce202
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/platforms/rosa/terraform/terraform.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def create_cluster(self, platform, cluster_name):
while retry_loop <= 600: # 1hr timeout
retry_loop += 1
cluster_start_time = int(datetime.datetime.utcnow().timestamp())
status_code, status_out, status_err = self.utils.subprocess_exec("rosa describe cluster -c " + cluster_name + " -o json", extra_params={"universal_newlines": True})
status_code, status_out, status_err = self.utils.subprocess_exec("rosa describe cluster -c " + cluster_name + " -o json", extra_params={"universal_newlines": True}, log_output=False)
if status_code != 0:
if retry_loop <= 600:
self.logging.debug(f"ROSA cluster {cluster_name} is not available yet, retrying..")
Expand Down

0 comments on commit 08ce202

Please sign in to comment.