We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c69b4e commit 2fb922cCopy full SHA for 2fb922c
setup.py
@@ -249,7 +249,7 @@ def run(self):
249
],
250
extras_require={
251
'dev': [
252
- 'azure-functions==1.0.3',
+ 'azure-functions==1.0.4',
253
'flake8~=3.5.0',
254
'mypy',
255
'pytest',
tests/endtoend/servicebus_functions/servicebus_trigger/__init__.py
@@ -8,6 +8,7 @@ def main(msg: azf.ServiceBusMessage) -> str:
8
'message_id': msg.message_id,
9
'body': msg.get_body().decode('utf-8'),
10
'content_type': msg.content_type,
11
+ 'delivery_count': msg.delivery_count,
12
'expiration_time': msg.expiration_time,
13
'label': msg.label,
14
'partition_key': msg.partition_key,
0 commit comments