##// END OF EJS Templates
authn: Bugfix, use the fallback plugin setting in log message.
johbo -
r137:3d3a5dc9 default
parent child Browse files
Show More
@@ -79,7 +79,7 b' class AuthenticationPluginRegistry(objec'
79 if self._fallback_plugin:
79 if self._fallback_plugin:
80 log.warn(
80 log.warn(
81 'Using fallback authentication plugin from INI file: "%s"',
81 'Using fallback authentication plugin from INI file: "%s"',
82 plugin.get_id())
82 self._fallback_plugin)
83 plugin = self.get_plugin(self._fallback_plugin)
83 plugin = self.get_plugin(self._fallback_plugin)
84 if plugin is not None and plugin not in plugins:
84 if plugin is not None and plugin not in plugins:
85 plugins.append(plugin)
85 plugins.append(plugin)
General Comments 0
You need to be logged in to leave comments. Login now