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
WrapConn didn't close connReader and connWriter loops, leaving this
responsibility to its callers, potentially leading to goroutine leaks,
this is mitigated by closing those loops and never returning a non-nil
Conn pointer when WrapConn fails.
Fixes#289
WrapConn didn't close connReader and connWriter loops, leaving this
responsibility to its callers, potentially leading to goroutine leaks,
this is mitigated by closing those loops and never returning a non-nil
Conn pointer when WrapConn fails.
Fixes#289
If c.init() fails, the connection will never be closed, leading to leaked routines running in both connReader and connWriter loops.
scylla-go-driver/transport/conn.go
Lines 497 to 504 in 88fc8ef
The text was updated successfully, but these errors were encountered: