Skip to content

Commit aa9288a

Browse files
authored
Merge pull request #14 from TaskarCenterAtUW/develop
Develop to Main
2 parents 6e09e35 + c1d55c2 commit aa9288a

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change log
22

3+
### 0.0.14
4+
- Fixed https://dev.azure.com/TDEI-UW/TDEI/_workitems/edit/302
5+
36
### 0.0.13
47
- Removed validation from QueueMassage Class
58

freeze_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
build_date = date.today().strftime('%Y-%m-%d')
1313

14-
version = '0.0.13'
14+
version = '0.0.14'
1515

1616
with open(version_file_path, 'w+') as version_file:
1717
version_file.write("version = '{}'\n".format(version))

src/python_ms_core/core/topic/config/topic_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ def __init__(self, config=None, topic_name=None):
77
self.provider = config.provider
88
self.connection_string = config.connection_string
99
if self.provider.lower() == 'azure':
10-
self.client = ServiceBusClient.from_connection_string(conn_str=self.connection_string, retry_total=0)
10+
self.client = ServiceBusClient.from_connection_string(conn_str=self.connection_string, retry_total=10, retry_backoff_factor=1, retry_backoff_max=30)
1111
self.sender = ServiceBusMessage

0 commit comments

Comments
 (0)