is there any way to set request/read/write timeout...
# ktor
c
is there any way to set request/read/write timeout with ktor client for ios?
j
c
so seems like we need to wait for ktor update :S
c
Why not use timeout for call by 'withTimeout(millis) { }` ?
j
or in other words, I don't see timeoutInterval being set on the nativeRequest
c
Cancelling a call (due to timeout) should cause it to close everything. Not sure if it works as intended on ios
c
on iOS I am actually getting a timeout after about 1/2 minutes (hadn't measured it). I know that the problem is related to the backend, but that's impossible to speed the process up since it's not controlled by me. So I need to remove the timeout at all
(I think the timeout is setted at 60s, that is the default value)
j
looks like the error I mentioned is resolved with beta-2
c
yes!