We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7d469e commit dfa67b0Copy full SHA for dfa67b0
firebase-firestore/src/main/java/com/google/firebase/firestore/core/SyncEngine.java
@@ -569,6 +569,7 @@ private void removeLimboTarget(DocumentKey key) {
569
// the key won't exist in `limboTargetsByKey`. Only do the cleanup if we still have the target.
570
Integer targetId = activeLimboTargetsByKey.get(key);
571
Logger.warn("zzyzx", "removeLimboTarget() start; key=" + key + " targetId=" + targetId + " " + describeKeyInActiveLimboTargetsByKey(key));
572
+ enqueuedLimboResolutions.remove(key);
573
if (targetId != null) {
574
remoteStore.stopListening(targetId);
575
activeLimboTargetsByKey.remove(key);
0 commit comments