File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
firestore-counter/functions Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ class ShardedCounterWorker {
120
120
unsubscribeMetadataListener = this . metadoc . ref . onSnapshot ( ( snap ) => {
121
121
// if something's changed in the worker metadata since we were called, abort.
122
122
if ( ! snap . exists || ! deepEqual ( snap . data ( ) , this . metadata ) ) {
123
- console . log ( "shutting down cause metadoc changed." ) ;
123
+ console . log ( "Shutting down because metadoc changed." ) ;
124
124
shutdown ( )
125
125
. then ( resolve )
126
126
. catch ( reject ) ;
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ export class ShardedCounterWorker {
140
140
unsubscribeMetadataListener = this . metadoc . ref . onSnapshot ( ( snap ) => {
141
141
// if something's changed in the worker metadata since we were called, abort.
142
142
if ( ! snap . exists || ! deepEqual ( snap . data ( ) , this . metadata ) ) {
143
- console . log ( "shutting down cause metadoc changed." ) ;
143
+ console . log ( "Shutting down because metadoc changed." ) ;
144
144
shutdown ( )
145
145
. then ( resolve )
146
146
. catch ( reject ) ;
You can’t perform that action at this time.
0 commit comments