importfunctions_framework.aiofromstarlette.requestsimportRequestfromstarlette.responsesimportResponse@functions_framework.aio.httpasyncdefmain(request: Request) ->Response:
print("Hello world")
returnResponse(status_code=200)- run functions-framework --target=main --debug
- Edit
print("Hello world") -> print("I've updated")
Expected: Should reload the application
Result: Does nothing
Seems like StarletteApplication probably needs something like self.options.reload = debug?
CC @taeold
print("Hello world")->print("I've updated")Expected: Should reload the application
Result: Does nothing
Seems like StarletteApplication probably needs something like
self.options.reload = debug?CC @taeold