Skip to content

Commit

Permalink
Just skip empty stderr messages, don't break on them
Browse files Browse the repository at this point in the history
  • Loading branch information
smoores-dev authored and rwols committed Apr 10, 2022
1 parent 994c4c5 commit 56ee12f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/core/transports.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def _stderr_loop(self) -> None:
return
message = self._stderr.readline().decode('utf-8', 'replace')
if message == '':
break
continue
callback_object = self._callback_object()
if callback_object:
callback_object.on_stderr_message(message.rstrip())
Expand Down

0 comments on commit 56ee12f

Please sign in to comment.