I noticed that the default request set in `HttpCli...
# ktor
t
I noticed that the default request set in
HttpClient
cannot be (fully) overridden. Is it intended ? If I configure the default request's URL like this:
Copy code
defaultRequest {
    url {
        protocol = URLProtocol.HTTPS
        host = "<http://default.host.com|default.host.com>"
        parameter("param", "default")
    }
}
Then, using that
HttpClient
instance, I call
Copy code
httpClient.get<String>("<http://another.host.com?param=changed>")
The called URL will be
<https://default.host.com?param=changed&param=default>
...