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 af4a67f266..832b6216f6 100644
--- a/meta/lib/oeqa/core/target/ssh.py
+++ b/meta/lib/oeqa/core/target/ssh.py
@@ -226,6 +226,9 @@ def SSHCall(command, logger, timeout=None, **opts):
226 endtime = time.time() + timeout 226 endtime = time.time() + timeout
227 except InterruptedError: 227 except InterruptedError:
228 continue 228 continue
229 except BlockingIOError:
230 logger.debug('BlockingIOError')
231 continue
229 232
230 # process hasn't returned yet 233 # process hasn't returned yet
231 if not eof: 234 if not eof: