thedeg123
thedeg123

Reputation: 438

FirebaseError: invalid stream token

After changing a cloud function I’m getting the following error for any write operation to my database: FirebaseError: invalid stream token. After changing the functions back and redeploying, the error still remains. I was unable to find any reference to this error in Firebase docs. Anyone know what this is about?

Upvotes: 1

Views: 455

Answers (1)

thedeg123
thedeg123

Reputation: 438

I "solved" this. For anyone else who runs into the error:

> rm package-lock.json
> rm -rf node-modules/
> npm install

Would still be nice to have a reference to this somewhere though.

Upvotes: 1

Related Questions