user2908517
user2908517

Reputation: 518

Cloud Function finished with status: 'timeout'"

In Firebase console, the last Event message in Functions/Log section is "Function execution took 60006 ms, finished with status: 'timeout'". Is "timeout" the status the function is supposed to finish with? Or did I miss something in the code that would say "that's the end"?

Upvotes: 3

Views: 3694

Answers (1)

Taio
Taio

Reputation: 3724

You should send a response like res.send(200) at the end for it to terminate properly

Upvotes: 5

Related Questions