You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 30, 2025. It is now read-only.
The ordering of events that are emitted is sometimes lost due to the use of the goroutine during the emit to the handlers.
This was found to eventually cause a deadlock in cloud runs.
To overcome this issue we tried to remove the goroutine, but the use of buffered channels didn't help in reducing the possibility of other deadlocks.
We still need to find a robust and maintainable solution whereby the order of the emitted events is somehow kept when the event is emitted to the handlers.