Skip to content

Commit d13344e

Browse files
committed
avoids duplicate confirmation
Duplicate confirmation of message is avoided
1 parent 484f6e3 commit d13344e

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

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.15'
14+
version = '0.0.16'
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/topic.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ def start_listening(self, provider, topic, subscription):
4949
for message in topic_receiver:
5050
try:
5151
self.process_message(message=str(message)) # sync call. [By default 1minute ] -> lock renewal for 300 seconds
52-
topic_receiver.complete_message(message)
5352
except Exception as e:
5453
print(f'Error : {e}, Invalid message received : {message}')
5554
finally:

0 commit comments

Comments
 (0)