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
importRealmfrom"realm";constapp=Realm.App.get("realmjstestapp-jjhtf");constcredentials=Realm.Credentials.anonymous(false);setInterval(()=>{console.log("Still alive");},1000);app.addListener(()=>{console.log("Current user is",app.currentUser);});awaitapp.logIn(credentials);
Core version
Core version: 8f96615 (most likely caused by #7300)
The text was updated successfully, but these errors were encountered:
Expected results
Absence of deadlocks.
Actual Results
Process locks up waiting for
m_user_mutex
onrealm-core/src/realm/object-store/sync/app.cpp
Line 600 in 72fefa1
current_user
is accessed from an "app listener callback".Very similar to #7183 (except this was for
User
).Steps & Code to Reproduce
The following JS code reproduce the issue:
Core version
Core version: 8f96615 (most likely caused by #7300)
The text was updated successfully, but these errors were encountered: