Skip to content

Commit

Permalink
upgrade fix 0.31
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Osypenko <[email protected]>
  • Loading branch information
DanielOsypenko committed Jan 13, 2025
1 parent 5a9c6a3 commit e6407fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ocs_ci/utility/rosa.py
Original file line number Diff line number Diff line change
Expand Up @@ -1137,5 +1137,5 @@ def upgrade_rosa_cluster(cluster_name, version):
"""
cmd = f"rosa upgrade cluster --cluster {cluster_name} --control-plane --version {version} --mode auto --yes"
proc = exec_cmd(cmd, timeout=2400, text=True)
logger.info(f"Upgrade cluster command output:\n {proc.stdout.strip()}")
proc = exec_cmd(cmd, timeout=2400)
logger.info(f"Upgrade cluster command output:\n {proc.stdout.decode().strip()}")

0 comments on commit e6407fa

Please sign in to comment.