-
I got the following message today while starting up the application for the first time. 09:53:15.909 ERROR [IdentifyRateLimiter] - IdentifyRateLimiter threw an exception in context [dev.kord.gateway.ratelimit.IdentifyRateLimiterImpl$special$$inlined$CoroutineExceptionHandler$1@74965a99, StandaloneCoroutine{Cancelling}@695bb92c, Dispatchers.Default], please report this, it should not happen |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments
-
this sounds like a dependency mismatch. which version of kotlinx.coroutines are you using at runtime? |
Beta Was this translation helpful? Give feedback.
-
This is my entire build.gradle.kts @lukellmann
|
Beta Was this translation helpful? Give feedback.
-
https://docs.gradle.org/current/userguide/viewing_debugging_dependencies.html |
Beta Was this translation helpful? Give feedback.
-
so running |
Beta Was this translation helpful? Give feedback.
-
There seem to be a mix between 1.6.4 1.7.1 1.7.3
|
Beta Was this translation helpful? Give feedback.
-
bumping these dependencies to higher version solved the problem:
|
Beta Was this translation helpful? Give feedback.
-
i think this line in your buildscript might cause the problem: implementation("org.jetbrains.kotlinx:kotlinx-coroutines-slf4j") my wild guess is that this takes the version it should be fixed by specifying the version: implementation("org.jetbrains.kotlinx:kotlinx-coroutines-slf4j:1.7.3") |
Beta Was this translation helpful? Give feedback.
bumping these dependencies to higher version solved the problem: