What's the reason that `TcpSocketBuilder.bind()` i...
# ktor
m
What's the reason that
TcpSocketBuilder.bind()
is now
suspend
in v3? My C/posix is a bit rusty but I thought opening a local socket for listening is non-blocking? Or is it not?
Reason I'm asking is that we have a MockServer that wraps it and is used extensively in non suspend
@Before
functions.
a
There is an open issue to address this problem.
2
m
Ah thanks, watched!