Skip to content

Commit 42df341

Browse files
author
Evan Roman
committed
Debug
1 parent 108e38f commit 42df341

File tree

1 file changed

+1
-1
lines changed
  • tests/extension_tests/deferred_bindings_tests/deferred_bindings_eventhub_functions

1 file changed

+1
-1
lines changed

tests/extension_tests/deferred_bindings_tests/deferred_bindings_eventhub_functions/function_app.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
connection="AzureWebJobsEventHubConnectionString")
2525
@app.route(route="eventhub_output")
2626
def eventhub_output(req: func.HttpRequest, event: func.Out[str]) -> str:
27-
# event.set(req.get_body().decode('utf-8'))
27+
event.set('debug')
2828
return 'OK'
2929

3030
# This is an actual EventHub trigger which will convert the event data

0 commit comments

Comments
 (0)