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
When checking the logs I noticed some cases of
raise LockedAuthException("Setting auth while locked.")
which should not happen normally.
I think it's possible however due to race conditions or object copying related to forking off the (gunicorn) workers, but needs more investigation.
The text was updated successfully, but these errors were encountered:
Issue #13: use 1 thread in gunicron for now
e26a4a2
Initial setup used 2 threads, but a couple of components in the aggregator are not thread safe at the moment: caches, the back-end-connections, ...
Using 1 thread per worker should resolve this problem.
In longer term it could be considered to make things thread safe, but at the moment it's just easier to add more (gunicorn) workers.
Sorry, something went wrong.
No branches or pull requests
When checking the logs I noticed some cases of
which should not happen normally.
I think it's possible however due to race conditions or object copying related to forking off the (gunicorn) workers, but needs more investigation.
The text was updated successfully, but these errors were encountered: