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
Right now pool.CloseAll() calls Close() on all connections it has, but doesn't wait until their loops are actually stopped before exiting itself.
Goroutines running the connection loops stop fast, but after session.Close() returns they should be already stopped, otherwise goleak will complain about leaked goroutines in tests.
Right now pool.CloseAll() calls Close() on all connections it has, but doesn't wait until their loops are actually stopped before exiting itself.
Goroutines running the connection loops stop fast, but after session.Close() returns they should be already stopped, otherwise goleak will complain about leaked goroutines in tests.
scylla-go-driver/transport/pool.go
Lines 115 to 122 in 88fc8ef
The text was updated successfully, but these errors were encountered: