From b84cf35d79beeb901e09cd72c45e4eadc7b56f9e Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 13 Aug 2026 14:52:03 -0400 Subject: [PATCH] Show progress with osdeploy fetch --- confluent_server/bin/osdeploy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_server/bin/osdeploy b/confluent_server/bin/osdeploy index 510974bb..8dd6c139 100644 --- a/confluent_server/bin/osdeploy +++ b/confluent_server/bin/osdeploy @@ -555,7 +555,7 @@ async def download_image(distname, destdir): sys.stderr.write('Destination file {0} already exists\n'.format(destfile)) sys.exit(1) print('Downloading {0} to {1}'.format(dlinfo.iso_url, destfile)) - await download.download_dist(destfile, destdir, dlinfo=dlinfo) + await download.download_dist(destfile, destdir, progress_callback=download.print_progress, dlinfo=dlinfo) async def osimport(imagefile, checkonly=False, custname=None): c = client.Command()