We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 108e38f commit 42df341Copy full SHA for 42df341
tests/extension_tests/deferred_bindings_tests/deferred_bindings_eventhub_functions/function_app.py
@@ -24,7 +24,7 @@
24
connection="AzureWebJobsEventHubConnectionString")
25
@app.route(route="eventhub_output")
26
def eventhub_output(req: func.HttpRequest, event: func.Out[str]) -> str:
27
- # event.set(req.get_body().decode('utf-8'))
+ event.set('debug')
28
return 'OK'
29
30
# This is an actual EventHub trigger which will convert the event data
0 commit comments