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 52f36c3 commit 73d4808Copy full SHA for 73d4808
firebase-firestore/src/main/java/com/google/firebase/firestore/local/IndexBackfiller.java
@@ -107,7 +107,7 @@ public Scheduler getScheduler() {
107
public int backfill() {
108
hardAssert(localDocumentsView != null, "setLocalDocumentsView() not called");
109
hardAssert(indexManager != null, "setIndexManager() not called");
110
- return persistence.runTransaction("Backfill Indexes", this::writeIndexEntries);
+ return persistence.runTransaction("Backfill Indexes", () -> this.writeIndexEntries());
111
}
112
113
/** Writes index entries until the cap is reached. Returns the number of documents processed. */
0 commit comments