Skip to content

Commit

Permalink
Merge pull request #18430 from gousteris/backport-18387-v23.3.x-609
Browse files Browse the repository at this point in the history
  • Loading branch information
gousteris committed May 14, 2024
2 parents 46bae08 + eaed6c1 commit 19ff706
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/rptest/services/redpanda_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ def _async_download_on_node_unlocked(self, node, version):
version_root = self.root_for_version(version)

tgz = "redpanda.tar.gz"
cmd = f"curl -fsSL {self._version_package_url(version)} --create-dir --output-dir {version_root} -o {tgz} && gunzip -c {version_root}/{tgz} | tar -xf - -C {version_root} && rm {version_root}/{tgz}"
cmd = f"curl -fsSL {self._version_package_url(version)} --retry 3 --retry-connrefused --retry-delay 2 --create-dir -o {version_root}/{tgz} && gunzip -c {version_root}/{tgz} | tar -xf - -C {version_root} && rm {version_root}/{tgz}"
return node.account.ssh_capture(cmd)

def reset_current_install(self, nodes):
Expand Down

0 comments on commit 19ff706

Please sign in to comment.