Skip to content

Commit 2d24034

Browse files
committed
Fix DatastoreImpl.terminate() to actually set the terminated flag.
1 parent d680986 commit 2d24034

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/firestore/src/remote/datastore.ts

Lines changed: 1 addition & 1 deletion
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)