Is it intended that the client can't resolve urls ...
# ktor
a
Is it intended that the client can't resolve urls without a protocol?
127.0.0.1:3500
works find with curl, but not from ktor
e
Hi @avolkmann, there is no alpn implementation in ktor. What protocol did you expect?
a
@e5l I was expecting a call to
127.0.0.1:3500
to work without adding
<http://127.0.0.1:3500>
e
Could you file an issue? Probably we should fix it
a
sure
e
Or note? Why would an insecure (http) protocol shall be a default? That requires some discussion in any case.
e
It’s not about defaulting, we probably need a common negotiation protocol(like alpn).
👍 1
a
I would be fine with the current way, if there was an exception being thrown to indicate that I didn't specify a protocol
🤔 1
I ended up checking the network first, which wasted a lot of time