Skip to content
This repository was archived by the owner on Oct 14, 2023. It is now read-only.

Commit f8eb532

Browse files
authored
Fix var name in service bus function
...i am a horrible programmer
1 parent 5e3cd3b commit f8eb532

File tree

1 file changed

+1
-1
lines changed
  • v2functions/sbqueue-trigger-sbqueue-out-binding

1 file changed

+1
-1
lines changed

v2functions/sbqueue-trigger-sbqueue-out-binding/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
def main(msgIn: func.ServiceBusMessage, msgOut: func.Out[str]):
55
body = msgIn.get_body().decode('utf-8')
66
logging.info(f'Processed Service Bus Queue message: {body}')
7-
msgOut.set(msgbody)
7+
msgOut.set(body)

0 commit comments

Comments
 (0)