Skip to content

Commit

Permalink
Merge pull request #4211 from yiqianwei/bz2900
Browse files Browse the repository at this point in the history
Fix download failure about wget type
  • Loading branch information
yanan-fu authored Dec 24, 2024
2 parents 460d4fb + 7237bbf commit e563640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qemu/tests/stress_kernel_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def kernelcompile(session, vm_name):
ip = vm.get_address()
path = params.get("download_url")
test.log.info("kernel path = %s", path)
get_kernel_cmd = "wget %s --progress=none" % path
get_kernel_cmd = "wget %s" % path
install_status = utils_package.package_install("wget", session, timeout=60)
if not install_status:
test.error("Failed to install wget.")
Expand Down

0 comments on commit e563640

Please sign in to comment.