-
- Downloads
[FIX] bus: fix threads can only be started once
The `ImDispatch` thread uses the `thread.is_alive` method to check
whether or not the thread should be started. The issue is that, this
method will return `False` after the start method has been called, but
before the run method is invoked leading to the RuntimeError: thread
can only be started once.
This commit fixes this issue by suppressing this error in this case.
closes odoo/odoo#103153
Signed-off-by:
Alexandre Kühn (aku) <aku@odoo.com>
Please register or sign in to comment