We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In FalconAuthMiddleware the exempt_routes list gets appended with auth disabled route on every call to a resource which has auth_disabled set:
FalconAuthMiddleware
exempt_routes
auth_disabled
def _get_auth_settings(self, req, resource): ... if auth_settings.get('auth_disabled'): auth_settings['exempt_routes'].append(req.uri_template) ...
This causes the list to grow indefinitely.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In
FalconAuthMiddleware
theexempt_routes
list gets appended with auth disabled route on every call to a resource which hasauth_disabled
set:This causes the list to grow indefinitely.
The text was updated successfully, but these errors were encountered: