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