mirror of https://github.com/zulip/zulip.git
e1acd7b974
Creating the QueueProcessingWorker objects when the ThreadedWorker is created can lead to a race which caused confusing error messages: 1. A thread tries to call `self.worker = get_worker()` 2. This call raises an exception, which is caught by `log_and_exit_if_exception` 3. `log_and_exit_if_exception` sends our process a SIGUSR1, _but otherwise swallows the error_. 4. The thread's `.run()` is called, which tries to access `self.worker`, which was never set, and throws another exception. 5. The process handles the SIGUSR1, restarting. Move the creation of the worker to when it is started, so the worker object does not need to be stored, and possibly have a decoupled failure. |
||
---|---|---|
.. | ||
commands | ||
data | ||
__init__.py |