thanhtung90
thanhtung90

Reputation: 67

Cloud Functions for Firebase infinite running then quota exceeded

I got stuck when edit example function generateThumbnail, which is convert to multiple image resolution but unfortunately, it raised some exceptions then it running continuously util system report quota exceeded. Would you show me how to stop running process in Functions?

Upvotes: 2

Views: 239

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 598718

The simplest way to stop a function like that is to deploy an empty function for it instead, or to deploy an index.js without the function present.

Upvotes: 2

Related Questions