Hello!
The README shows a error handler for the standard functions framework.
importfunctions_framework@functions_framework.errorhandler(ZeroDivisionError)defhandle_zero_division(e):
return"I'm a teapot", 418deffunction(request):
1/0return"Success", 200
Is there something similar available for the newer async functions?
Hello!
The README shows a error handler for the standard functions framework.
Is there something similar available for the newer async functions?