Show More
@@ -96,7 +96,7 b' class AuthenticationPluginRegistry(objec' | |||||
96 |
|
96 | |||
97 | # Add the fallback plugin from ini file. |
|
97 | # Add the fallback plugin from ini file. | |
98 | if fallback_plugin: |
|
98 | if fallback_plugin: | |
99 | log.warn( |
|
99 | log.warning( | |
100 | 'Using fallback authentication plugin from INI file: "%s"', |
|
100 | 'Using fallback authentication plugin from INI file: "%s"', | |
101 | fallback_plugin) |
|
101 | fallback_plugin) | |
102 | plugin = self.get_plugin(fallback_plugin) |
|
102 | plugin = self.get_plugin(fallback_plugin) |
@@ -132,9 +132,9 b' class AuthnRootResource(AuthnResourceBas' | |||||
132 | # Allow plugin resources with identical names by rename duplicates. |
|
132 | # Allow plugin resources with identical names by rename duplicates. | |
133 | unique_name = _ensure_unique_name(resource.__name__) |
|
133 | unique_name = _ensure_unique_name(resource.__name__) | |
134 | if unique_name != resource.__name__: |
|
134 | if unique_name != resource.__name__: | |
135 | log.warn('Name collision for traversal resource "%s" registered ' |
|
135 | log.warning('Name collision for traversal resource "%s" registered ' | |
136 | 'by authentication plugin "%s"', resource.__name__, |
|
136 | 'by authentication plugin "%s"', resource.__name__, | |
137 | plugin_id) |
|
137 | plugin_id) | |
138 | resource.__name__ = unique_name |
|
138 | resource.__name__ = unique_name | |
139 |
|
139 | |||
140 | log.debug('Register traversal resource "%s" for plugin "%s"', |
|
140 | log.debug('Register traversal resource "%s" for plugin "%s"', |
General Comments 0
You need to be logged in to leave comments.
Login now