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
It seems dead connections get somehow duplicated of existing alive ones. I can see essentially the same connection (same host, post, attributes, etc) both in the dead set and alive one (different instances of the connection, not the same).
I've added debug logs to __rebuild_connections and this is what I got:
Has anybody had this issue where it continues looping forever because the number of connections keeps increasing?
1/14
2/15
3/16
etc
It seems dead connections get somehow duplicated of existing alive ones. I can see essentially the same connection (same host, post, attributes, etc) both in the dead set and alive one (different instances of the connection, not the same).
I've added debug logs to
__rebuild_connections
and this is what I got:If I'm correct, we need to replace
new_connections = new_connections.reject { |c| @connections.include?(c) }
with
new_connections = new_connections.reject { |c| @connections.all.include?(c) }
Originally posted by @andrepcg in #695 (comment)
The text was updated successfully, but these errors were encountered: