Skip to content

Commit

Permalink
Merge pull request #6 from terminalmage/bp-21841
Browse files Browse the repository at this point in the history
deepcopy the PER_REMOTE_PARAMS global
  • Loading branch information
Nicole Thomas committed Mar 20, 2015
2 parents a6d8105 + 565fcea commit 000c55d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion salt/fileserver/gitfs.py
Expand Up @@ -663,7 +663,7 @@ def init():
# default to empty strings. If any of them are defined and the gitfs
# provider is not one that supports auth, then error out and do not
# proceed.
override_params = PER_REMOTE_PARAMS
override_params = copy.deepcopy(PER_REMOTE_PARAMS)
global_auth_params = [
'gitfs_{0}'.format(x) for x in AUTH_PARAMS
if __opts__['gitfs_{0}'.format(x)]
Expand Down

0 comments on commit 000c55d

Please sign in to comment.