Reputation: 67
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
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