We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d987ecd commit ade1629Copy full SHA for ade1629
openshift/helper/base.py
@@ -120,7 +120,7 @@ def set_client_config(self, **auth):
120
for key in auth_keys:
121
if auth.get(key) is not None:
122
if key == 'api_key':
123
- self.api_client.configuration.api_key = {'authorization': "Bearer %s" % auth.pop('api_key')}
+ self.api_client.configuration.api_key = {'authorization': "Bearer %s" % auth.pop('api_key')}
124
else:
125
setattr(self.api_client.configuration, key, auth[key])
126
0 commit comments