Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions stomp/listener.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ def wait_on_receipt(self):
with self.receipt_condition:
while not self.received:
self.receipt_condition.wait()
self.received = False
self.received = False

def wait_on_disconnected(self):
"""
Expand Down Expand Up @@ -536,7 +536,7 @@ def wait_for_message(self):
with self.message_condition:
while not self.message_received:
self.message_condition.wait()
self.message_received = False
self.message_received = False

def get_latest_message(self):
return self.message_list[-1]
Expand All @@ -551,4 +551,4 @@ def wait_for_heartbeat(self):
with self.heartbeat_condition:
while not self.heartbeat_received:
self.heartbeat_condition.wait()
self.heartbeat_received = False
self.heartbeat_received = False