seems to be something with the streaming response ...
# multiplatform
j
seems to be something with the streaming response parsing this completes just fine
Copy code
HttpClient().use { httpClient ->
    withTimeout(timeout) {
        val body = httpClient.get(urlPath).bodyAsText()
        ... do work ...
    }
}