Skip to content

Commit

Permalink
Prevent 'Already reading' continuous exception message (bsc#1137642)
Browse files Browse the repository at this point in the history
  • Loading branch information
meaksh committed Oct 29, 2019
1 parent 9ccc8ef commit 6c84612
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions salt/transport/ipc.py
Original file line number Diff line number Diff line change
Expand Up @@ -770,6 +770,7 @@ def _read_async(self, callback):
break
except Exception as exc:
log.error('Exception occurred while Subscriber handling stream: %s', exc)
yield tornado.gen.sleep(1)

def __run_callbacks(self, raw):
for callback in self.callbacks:
Expand Down

0 comments on commit 6c84612

Please sign in to comment.