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
We use Retrofit in our backend, and I notice that retrofit2.OkHttpCall relies extensively on synchronized(this), which can pin host threads (when using virtual threads). Would you be open to a PR replacing use of synchronized here with use of ReentrantLock?
The text was updated successfully, but these errors were encountered:
We use Retrofit in our backend, and I notice that
retrofit2.OkHttpCall
relies extensively onsynchronized(this)
, which can pin host threads (when using virtual threads). Would you be open to a PR replacing use ofsynchronized
here with use ofReentrantLock
?The text was updated successfully, but these errors were encountered: