mirror of
git://git.yoctoproject.org/poky
synced 2026-08-12 19:49:25 +00:00
bitbake: server/process: Add missing exception raise
The intent of the code was to catch one kind of error, it was actually swallowing all exceptions and looping indefinitely. Fix it to work as intended. This explains some mystery hangs we've been seeing. (Bitbake rev: d73dbc3580faa1225d95ae4cefac4879ca3c1b2f) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
2c15d8000d
commit
65a7662c5b
@ -499,6 +499,7 @@ def connectProcessServer(sockname, featureset):
|
||||
except IOError as e:
|
||||
if e.errno == errno.EWOULDBLOCK:
|
||||
pass
|
||||
raise
|
||||
finally:
|
||||
os.chdir(cwd)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user