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

Max Raskin

12/13/2019, 1:15 PM
Hi, I'm using ktor with Mutiplatform, when performing an HTTP POST from a background thread on iOS, I'm getting an exception about a global in ktor not annonated as SharedImmutable, that global is in
ktor-client/ktor-client-core/common/src/io/ktor/client/features/DefaultResponseValidation.kt
its name is:
ValidateMark
using 1.3.0-beta-2 tag, may I contribute a fix with it annotated as
@SharedImmutable
?
e

e5l

12/13/2019, 1:21 PM
Hi @Max Raskin, sure 🙂
m

Max Raskin

12/13/2019, 1:22 PM
Cool, will continue reading the contrib guide to see how it's done 🙂
@e5l quick question, since I'm relatively new to Gradle and Kotlin, what would be the best practice for referencing a local build of ktor. e.g say I have my project in
~/my_project
and ktor in
~/ktor
, what would be a correct way of referencing it in order to test my changes locally? Thanks
2 Views