qlik-oss / enigma-go

Go library for consuming Qlik's Associative Engine.
MIT License
39 stars 12 forks source link

Avoid deadlocking mainSessionLoop #132

Closed DnlLrssn closed 4 years ago

DnlLrssn commented 4 years ago

Since order of case select is not guaranteed we got deadlock in a small percentage of cases due to socketError channel filling up when having multiple parallel write requests and the heartbeat picked the <-q.outgoingMessages instead of <-socketError case multiple subsequent times. Exiting the go-routine directly after writing to socketError mitigates the deadlock.