I'm trying to report a ktor issue, github kicks me...
# ktor
u
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?
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"
a
Please use this link to file an issue
u
same issue, am I really stupid and don't see it?
a
I get the same error, but I can see the field. Can you edit this issue?
e
Fixed! Sorry for the delay
a