When using Ktor as a client, if I do 2 requests in two different Coroutines for the same client in parallel, are they executed in parallel or does the client force them to run sequentially?
I'm asking because my stdout output looks very sequential (no mess because of lines being printed one inside the other), so I'm wondering.