Skip to content

Avoid deadlock with MailboxClientManager

Sebastian requested to merge 482-fix-issue-with-closing-window into main

Solve the more general problem where a task already running on the event executor schedules another task on the same executor and expects that to finish asynchronously. With the single-threaded event executor this does not work unless such tasks as immediately executed instead of being put into the queue.

Closes #482 (closed)

Merge request reports