diff options
| author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-01-15 16:35:03 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-16 10:36:50 +0000 |
| commit | 0fe6e2dc7ba02fe03fe2c8434a469580ead6ebcd (patch) | |
| tree | 72587e8bf0dc1fe180fd494bff34cd9e4fece28d | |
| parent | a5f34bc9ecc2ba25a61a229297b752e2b35dbb46 (diff) | |
| download | poky-0fe6e2dc7ba02fe03fe2c8434a469580ead6ebcd.tar.gz | |
bitbake: toaster: increase timeout
Sometimes Toaster connection to the bitbake server fails with
this error in the log:
ERROR: Could not connect to server 0.0.0.0:46572
: Could not register UI event handler
It happens more often on slow machines.
Increasing timeout after restarting bitbake should fix this issue.
[YOCTO #8776]
(Bitbake rev: b64a0adc1efd72aa4d46df3e043dd14543abae3d)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Elliot Smith <elliot.smith@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rwxr-xr-x | bitbake/bin/toaster | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/bin/toaster b/bitbake/bin/toaster index 1f9849072a..e5041cbb99 100755 --- a/bitbake/bin/toaster +++ b/bitbake/bin/toaster | |||
| @@ -228,7 +228,7 @@ if [ "$1" = 'restart-bitbake' ] ; then | |||
| 228 | sleep 1 | 228 | sleep 1 |
| 229 | start_bitbake | 229 | start_bitbake |
| 230 | rc=$? | 230 | rc=$? |
| 231 | sleep 1 | 231 | sleep 3 |
| 232 | return $rc | 232 | return $rc |
| 233 | fi | 233 | fi |
| 234 | 234 | ||
