Hi all! Are there issues with the `HttpResponseVal...
# ktor
j
Hi all! Are there issues with the
HttpResponseValidator
on Javascript? Somehow, if I have this:
Copy code
HttpResponseValidator {
    validateResponse {
        check(it.status == HttpStatusCode.OK || it.status == HttpStatusCode.NoContent)
    }
    handleResponseException {
        println("Response exception")
    }
}
The handleResponseException is not called, until the coroutine it is launched in cancels. Also subsequent requests are hanging
Using ktor 1.4.1