I'm trying to report a ktor issue, github kicks me over to youtrack. There I fill in the details and on submit it complains about not having a "due date".
I don't see any due date fields, nor should I care?
ursus
06/26/2024, 4:16 PM
issue is this
Copy code
When creating copies of ktor client
val ktorClient2 = ktorClient.config { ... }
such new instance doesn't have developmentMode boolean copied if the original instance has it set.
It's due to
public operator fun plusAssign(other: HttpClientConfig<out T>) {
followRedirects = other.followRedirects
useDefaultTransformers = other.useDefaultTransformers
expectSuccess = other.expectSuccess
plugins += other.plugins
pluginConfigurations += other.pluginConfigurations
customInterceptors += other.customInterceptors
}
it misses developmentMode = other.developmentMode
// ktor = "2.3.12"