Browse Source

Merge pull request #1753 from abutcher/mapping-method

Fix mappingMethod option in identity provider.
Brenton Leanhardt 9 years ago
parent
commit
ee3f020533
1 changed files with 1 additions and 1 deletions
  1. 1 1
      filter_plugins/openshift_master.py

+ 1 - 1
filter_plugins/openshift_master.py

@@ -57,7 +57,7 @@ class IdentityProviderBase(object):
         mapping_method = None
         for key in mm_keys:
             if key in self._idp:
-                mapping_method = self._idp[key]
+                mapping_method = self._idp.pop(key)
         if mapping_method is None:
             mapping_method = self.get_default('mappingMethod')
         self.mapping_method = mapping_method