diff options
-rw-r--r-- | bitbake/lib/bb/server/process.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py index f8d6767855..a8ba4681c6 100644 --- a/bitbake/lib/bb/server/process.py +++ b/bitbake/lib/bb/server/process.py | |||
@@ -186,7 +186,12 @@ class ProcessServer(Process, BaseImplServer): | |||
186 | nextsleep = self.next_heartbeat - now | 186 | nextsleep = self.next_heartbeat - now |
187 | 187 | ||
188 | if nextsleep is not None: | 188 | if nextsleep is not None: |
189 | select.select(fds,[],[],nextsleep) | 189 | try: |
190 | select.select(fds,[],[],nextsleep) | ||
191 | except InterruptedError: | ||
192 | # ignore EINTR error, nextsleep only used for wait | ||
193 | # certain time | ||
194 | pass | ||
190 | 195 | ||
191 | def runCommand(self, command): | 196 | def runCommand(self, command): |
192 | """ | 197 | """ |