| Submitter | Dongxiao Xu |
|---|---|
| Date | March 21, 2012, 12:55 p.m. |
| Message ID | <db4f8096f54b0b07dee581ffbdd7d2ede5c1c5b9.1332334068.git.dongxiao.xu@intel.com> |
| Download | mbox | patch |
| Permalink | /patch/23999/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/lib/bb/server/process.py b/lib/bb/server/process.py index ba91336..946af05 100644 --- a/lib/bb/server/process.py +++ b/lib/bb/server/process.py @@ -45,7 +45,7 @@ class ServerCommunicator(): while True: # don't let the user ctrl-c while we're waiting for a response try: - if self.connection.poll(.5): + if self.connection.poll(1): return self.connection.recv() else: return None
The parseConfigurationFiles commands needs more time for piping, thus change the polling timeout value from 0.5s to 1s. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> --- lib/bb/server/process.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)