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

Commit

Permalink
Updated uamqp dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
annatisch committed Jul 26, 2018
1 parent d98daa4 commit 1ba74a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def device_id():

@pytest.fixture()
def receivers(connection_str):
client = EventHubClient.from_connection_string(connection_str, debug=True)
client = EventHubClient.from_connection_string(connection_str, debug=False)
eh_hub_info = client.get_eventhub_info()
partitions = eh_hub_info["partition_ids"]

Expand All @@ -114,7 +114,7 @@ def receivers(connection_str):

@pytest.fixture()
def senders(connection_str):
client = EventHubClient.from_connection_string(connection_str, debug=False)
client = EventHubClient.from_connection_string(connection_str, debug=True)
eh_hub_info = client.get_eventhub_info()
partitions = eh_hub_info["partition_ids"]

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
zip_safe=False,
packages=find_packages(exclude=["examples", "tests"]),
install_requires=[
'uamqp~=0.1.0',
'uamqp~=0.2.0',
'msrestazure~=0.4.11',
'azure-common~=1.1',
'azure-storage~=0.36.0'
Expand Down

0 comments on commit 1ba74a5

Please sign in to comment.