Skip to content

Commit

Permalink
Merge pull request #699 from hhslepicka/fix_repeater
Browse files Browse the repository at this point in the history
FIX: Establish queued connection when we have elements in the QUEUE.
  • Loading branch information
hhslepicka authored Sep 29, 2020
2 parents 831651c + ff2177e commit 0cedca5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydm/data_plugins/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def establish_queued_connections():
return
try:
while (__CONNECTION_QUEUE__ is not None and
len(__CONNECTION_QUEUE__) == 0):
len(__CONNECTION_QUEUE__) > 0):
channel = __CONNECTION_QUEUE__.popleft()
establish_connection_immediately(channel)
QApplication.instance().processEvents()
Expand Down

0 comments on commit 0cedca5

Please sign in to comment.