Replies: 5 comments 4 replies
-
Error handlingWhen my Repro steps
|
Beta Was this translation helpful? Give feedback.
-
Flask wsgi adpator errorGot the following error:
Code: from flask import Flask, make_response, request
flask_app = Flask(__name__)
@flask_app.route("/")
def index():
return (
"Try /hello/Chris for parameterized Flask route.\n"
"Try /module for module import guidance"
)
@flask_app.route("/hello/<name>", methods=['GET','POST','DELETE'])
def hello(name: str):
return f"hello {name}"
app = func.FunctionApp(wsgi_app=flask_app.wsgi_app, auth_level=func.AuthLevel.ANONYMOUS) |
Beta Was this translation helpful? Give feedback.
-
Incorrect HttpTrigger URLIf route is empty (or only spaces), the Httptrigger URL is incorrect Trigger code -
Other cases -
|
Beta Was this translation helpful? Give feedback.
-
Without AzureWebJobsStrage, with Extension Bundle and http trigger (not using durable functions) we see the following issue.
|
Beta Was this translation helpful? Give feedback.
-
A general discussion page created to capture any bugs reported in BugBash for PyStein
Beta Was this translation helpful? Give feedback.
All reactions