Skip to content

Commit 31126af

Browse files
authored
Fix DatastoreImpl.terminate() to actually set the terminated flag (#4785)
1 parent d680986 commit 31126af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/firestore/src/remote/datastore.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ class DatastoreImpl extends Datastore {
132132
}
133133

134134
terminate(): void {
135-
this.terminated = false;
135+
this.terminated = true;
136136
}
137137
}
138138

0 commit comments

Comments
 (0)