`<http://httpClient.ws|httpClient.ws>(...)` does n...
# ktor
a
<http://httpClient.ws|httpClient.ws>(...)
does not propagate errors... is there any way to catch them?
d
run this inside the
ws() {}
Copy code
val run = runCatching {
//your code goes here
}

run.onFailure {
  log.error {Something wrong happens}
}
or try {} catch() {} of course
e
Hi, @Andrew Gazelka. It probably should be designed. Could you file an issue?