-
Notifications
You must be signed in to change notification settings - Fork 125
Open
Labels
Description
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", 200Is there something similar available for the newer async functions?