You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that "synchronized" is being used in the form of the Kotlin annotation "@synchronized"
e.g. @synchronized internal fun trackFailure(call: RealCall, e: IOException?)
With virtual threads this leads to a problem called thread pinning. I suggest you replace it with something like ReentrantLock, like it was done here:
I noticed that "synchronized" is being used in the form of the Kotlin annotation "@synchronized"
e.g. @synchronized internal fun trackFailure(call: RealCall, e: IOException?)
With virtual threads this leads to a problem called thread pinning. I suggest you replace it with something like ReentrantLock, like it was done here:
spring-projects/spring-framework@0b09f1e
The text was updated successfully, but these errors were encountered: