From 3c883abab92aa233423aeb546f4c4697caed8ffd Mon Sep 17 00:00:00 2001 From: Theodore Cowan Date: Wed, 25 Mar 2015 01:08:36 -0600 Subject: [PATCH] Update fileclient.py https://github.com/saltstack/salt/issues/21917 --- salt/fileclient.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/salt/fileclient.py b/salt/fileclient.py index ca361a941d..168e5ba0cf 100644 --- a/salt/fileclient.py +++ b/salt/fileclient.py @@ -592,7 +592,9 @@ class Client(object): try: query = salt.utils.http.query( fixed_url, - stream=True + stream=True, + username=url_data.username, + password=url_data.password ) response = query['handle'] chunk_size = 32 * 1024