diff options
author | John Estabrook <jestabro@vyos.io> | 2023-12-13 11:03:06 -0600 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2023-12-13 19:28:49 +0000 |
commit | 265cdc4cebc5818c2387bf4f803a9fd2be416928 (patch) | |
tree | 2131e76e970deac012d9838fb12a8c0aaf69c70e /python/vyos/remote.py | |
parent | 000d0a384f99cf71056c4639cbbc3be6bb2cf425 (diff) | |
download | vyos-1x-265cdc4cebc5818c2387bf4f803a9fd2be416928.tar.gz vyos-1x-265cdc4cebc5818c2387bf4f803a9fd2be416928.zip |
T5774: fix regressions in remote.upload and use in config_mgmt
(cherry picked from commit 6b325962a4b8b3e67d7976bf161aed34a9fe6cce)
Diffstat (limited to 'python/vyos/remote.py')
-rw-r--r-- | python/vyos/remote.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/remote.py b/python/vyos/remote.py index 8928cce67..f86d2ef35 100644 --- a/python/vyos/remote.py +++ b/python/vyos/remote.py @@ -450,7 +450,7 @@ def upload(local_path, urlstring, progressbar=False, source_host='', source_port=0, timeout=10.0): try: progressbar = progressbar and is_interactive() - urlc(urlstring, progressbar, source_host, source_port, timeout).upload(local_path) + urlc(urlstring, progressbar, False, source_host, source_port, timeout).upload(local_path) except Exception as err: print_error(f'Unable to upload "{urlstring}": {err}') except KeyboardInterrupt: |