-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Description
Good bug reports include a failing test! Writing a test helps you to isolate and describe the problem, and it helps us to fix it fast. Bug reports without a failing test or reproduction steps are likely to be closed.
| Component | Kotlin Version | Result |
|---|---|---|
| IntelliJ 2025.3.1 | 2.3.10/2.3.20 | Bundled stdlib |
| OkHttp 5.3.2. | 2.2.21 | Compiled against old Duration internals |
| Outcome | Crash | NoSuchMethodError: fromRawValue-UwyO8pc |
my dependency tree showing Kotlin 2.3.10 forcing over 2.2.x
...
+--- org.jetbrains.kotlin:kotlin-stdlib:2.3.10
| +--- org.jetbrains.kotlin:kotlin-stdlib:2.2.0 -> 2.3.10 ()
| --- org.jetbrains.kotlin:kotlin-stdlib:2.2.0 -> 2.3.10 ()
| | --- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.3.10 ()
| --- org.jetbrains.kotlin:kotlin-stdlib:2.2.21 -> 2.3.10 ()
| | --- org.jetbrains.kotlin:kotlin-stdlib:2.2.21 -> 2.3.10 ()
| --- org.jetbrains.kotlin:kotlin-stdlib:2.2.21 -> 2.3.10 ()
...
{code:java}
2026-03-02 16:07:12,159 [ 66530] SEVERE - #c.i.i.p.PluginManager - 'long kotlin.time.Duration$Companion.fromRawValue-UwyO8pc$kotlin_stdlib(long)'
java.lang.NoSuchMethodError: 'long kotlin.time.Duration$Companion.fromRawValue-UwyO8pc$kotlin_stdlib(long)'
at kotlin.time.DurationKt.durationOfNanos(Duration.kt:1593)
at kotlin.time.DurationKt.toDuration(Duration.kt:969)
at okhttp3.internal._CacheControlCommonKt.commonForceCache(-CacheControlCommon.kt:65)
at okhttp3.CacheControl.(CacheControl.kt:276)
at okhttp3.Request.cacheControl(Request.kt:126)
at okhttp3.internal.cache.CacheStrategy$Factory.compute(CacheStrategy.kt:131)
at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:54)
at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:126)
at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:85)
at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:126)
at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:74)
at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:126)
at com.xxx.company.network.interceptors.BasicAuthInterceptor.intercept(BasicAuthInterceptor.java:51)
at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:126)
at okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:226)
at okhttp3.internal.connection.RealCall.execute(RealCall.kt:178)
{code}