瀏覽代碼

Fix mappingMethod option in identity provider.

Andrew Butcher 9 年之前
父節點
當前提交
a4ad924fa3
共有 1 個文件被更改,包括 1 次插入1 次删除
  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