https://kotlinlang.org logo
#ktor
Title
# ktor
u

uli

04/18/2018, 7:49 AM
Hi Guys, i am having trouble installing
BasicAuth
as client feature. I do:
Copy code
val apacheEnbgineFactory = Apache.config {
        followRedirects = true
    }

    val ktorClient = HttpClient(apacheEnbgineFactory) {
        install(BasicAuth) {
            username = "test"
            password = "test"
        }
    }
Trying to break inside the block passed to
intercept
inside BasicAuth does never break
e

e5l

04/18/2018, 8:22 AM
Yep, there is a problem here. I'll prepare the fix
u

uli

04/18/2018, 9:53 AM
resolved in alpha-6
👍 1
thx