We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 629f0be commit 9798f2bCopy full SHA for 9798f2b
meta/lib/oeqa/utils/sshcontrol.py
@@ -58,7 +58,7 @@ def _run(self, command, timeout=None, logfile=None):
58
data = os.read(self.process.stdout.fileno(), 1024)
59
if not data:
60
self.process.poll()
61
- if self.process.returncode is None:
+ if self.process.returncode is not None:
62
self.process.stdout.close()
63
eof = True
64
else:
0 commit comments