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 has been archived by the owner on Jun 20, 2024. It is now read-only.
host1$ weave launch
host2$ weave launch host1
host1$ weave stop
host2$ weave status connections
-> 192.168.48.11:6783 failed dial tcp4 192.168.48.11:6783: connection refused, retry: 2015-09-29 13:53:41.831462406 +0000 UTC
host2$ sleep 60
host2$ weave status connections
-> 192.168.48.11:6783 failed read tcp4 192.168.48.11:6783: connection reset by peer, retry: 2015-09-29 13:55:09.21609408 +0000 UTC
This shows an incorrect change of the reported error - the "connection reset by peer" comes from the original failure when we stopped the other peer and stomps on the subsequent "connection refused" error.
However, with slightly different timing, namely the ConnectionTerminated occurring when there is an ongoing connection attempt, we can get multiple concurrent connection attempts to the same target. This breaks a pretty important invariant of the ConnectionMaker, so there may be other bad effects.
The text was updated successfully, but these errors were encountered:
Apply
and then
This shows an incorrect change of the reported error - the "connection reset by peer" comes from the original failure when we stopped the other peer and stomps on the subsequent "connection refused" error.
However, with slightly different timing, namely the
ConnectionTerminated
occurring when there is an ongoing connection attempt, we can get multiple concurrent connection attempts to the same target. This breaks a pretty important invariant of theConnectionMaker
, so there may be other bad effects.The text was updated successfully, but these errors were encountered: