Related issues
#522
[REQUIRED] Version info
"dependencies": {
"@google-cloud/firestore": "^2.2.1",
"firebase-admin": "^8.2.0",
"firebase-functions": "^3.0.1",
},
"engines": {
"node": "8"
}
node: 8
firebase-functions: 3.0.1
firebase-tools: 7.0.1
firebase-admin: 8.2.0
Steps to reproduce
import * as admin from 'firebase-admin';
admin.initializeApp();
const db = admin.firestore();
db.settings({ timestampsInSnapshots: true });
const users = db.collection('users');
users.doc('myUserId').update({ fieldToUpdate: 'newValue' })
Update method throw this error :
{ Error
at Http2CallStream.call.on (/srv/node_modules/@grpc/grpc-js/build/src/client.js:101:45)
at emitOne (events.js:121:20)
at Http2CallStream.emit (events.js:211:7)
at process.nextTick (/srv/node_modules/@grpc/grpc-js/build/src/call-stream.js:71:22)
at _combinedTickCallback (internal/process/next_tick.js:132:7)
at process._tickDomainCallback (internal/process/next_tick.js:219:9)
code: 13,
details: '',
metadata: Metadata { options: undefined, internalRepr: Map {} },
note: 'Exception occurred in retry method that was not classified as transient' }
Were you able to successfully deploy your functions?
the deployment displays no errors
Related issues
#522
[REQUIRED] Version info
node: 8
firebase-functions: 3.0.1
firebase-tools: 7.0.1
firebase-admin: 8.2.0
Steps to reproduce
Update method throw this error :
Were you able to successfully deploy your functions?
the deployment displays no errors