Skip to content

Commit 684412c

Browse files
author
Dean Troyer
committed
Work around a version clash issue with os-client-config
Need to add the fixed_arguments arg to _validate_auth() so os-client-config 1.19.1 and 1.20.0 can call our version properly. Change-Id: I328e47ba2f8115e6b18bf1482fd4aa35056907a4
1 parent cb31fda commit 684412c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

openstackclient/common/client_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,11 @@ def auth_config_hook(self, config):
148148
LOG.debug("auth_config_hook(): %s" % config)
149149
return config
150150

151-
def _validate_auth_ksc(self, config, cloud):
151+
def _validate_auth_ksc(self, config, cloud, fixed_argparse=None):
152152
"""Old compatibility hack for OSC, no longer needed/wanted"""
153153
return config
154154

155-
def _validate_auth(self, config, loader):
155+
def _validate_auth(self, config, loader, fixed_argparse=None):
156156
"""Validate auth plugin arguments"""
157157
# May throw a keystoneauth1.exceptions.NoMatchingPlugin
158158

0 commit comments

Comments
 (0)