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
Currently there are some RwLocks used in informer and reflector that are locked during an async path. This will lock the entire event loop as RwLock is a synchronous construct. Instead using something async compatible like futures::lock::Mutex. Currently there doesn't seem to be any implementations of an async RwLock, but there looks to be some progress towards that end in tokio - tokio-rs/tokio#1665.
This is my bad 🤦♂ I should have noticed and included this in #92
The text was updated successfully, but these errors were encountered:
Currently there are some
RwLock
s used in informer and reflector that are locked during an async path. This will lock the entire event loop asRwLock
is a synchronous construct. Instead using something async compatible likefutures::lock::Mutex
. Currently there doesn't seem to be any implementations of an asyncRwLock
, but there looks to be some progress towards that end in tokio - tokio-rs/tokio#1665.This is my bad 🤦♂ I should have noticed and included this in #92
The text was updated successfully, but these errors were encountered: