rsocket / rsocket-kotlin

RSocket Kotlin multi-platform implementation
http://rsocket.io
Apache License 2.0
552 stars 37 forks source link

fix jvm tcp freeze in tests #156

Closed whyoleg closed 3 years ago

whyoleg commented 3 years ago

accidentally TCP tests on JVM were broken in #149 :( in TcpServerTest, additional selectors were created using Default dispatcher and not closed. and as so, after test finished, coroutines will continue working and block threads. Locally it was not reproducible on my side, as I have 8 cores, but CI has only 2 cores, so I've aligned tests JVM parameters to have better local reproducibility.