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
test: use own clients for tests leaving connections
There are some test cases that do not close its connections - it
violates isolation of the future test cases. The problem is they cannot
close them because they are dead (see #122) - let's simply use separate
instances of `Connector` for such cases.
Also, there is a test case `many_conn_ping` that waits for any of
several connections and then closes them. The problem is other
connections can be ready to decode, hence, they won't be dropped because
of #123 - I tried to simply wait for all of them after the case, but
then I faced another #124 bug, so let's simply use separate instance of
`Connector` here as well.
Workaround for #122
Workaround for #123
Workaround for #124
0 commit comments