summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oeqa/core/target/ssh.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/lib/oeqa/core/target/ssh.py b/meta/lib/oeqa/core/target/ssh.py
index 51079075b5..764ec339a0 100644
--- a/meta/lib/oeqa/core/target/ssh.py
+++ b/meta/lib/oeqa/core/target/ssh.py
@@ -250,6 +250,9 @@ def SSHCall(command, logger, timeout=None, **opts):
250 except InterruptedError: 250 except InterruptedError:
251 logger.debug('InterruptedError') 251 logger.debug('InterruptedError')
252 continue 252 continue
253 except BlockingIOError:
254 logger.debug('BlockingIOError')
255 continue
253 256
254 process.stdout.close() 257 process.stdout.close()
255 258