The problem is that the OutputStream to write to is synchronous in nature, so the underlying machinery has to convert it to an async read channel. So it runs writing code in separate thread, simultaneously pumping data out through normal async channels. If you have static text you want to send, consider using
respondText
instead