summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAníbal Limón <anibal.limon@linux.intel.com>2017-01-09 10:22:51 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-23 15:42:25 +0000
commit2ada2efb057a291eb34c66d975eb339232137956 (patch)
treed0f8c1116419c2e97d341452bbc2942cc4664305
parent12dfac442d2d5674198485fbeb708a01d215c576 (diff)
downloadopenembedded-core-contrib-2ada2efb057a291eb34c66d975eb339232137956.tar.gz
lib/bb/main.py: Shutdown cooker when server isn't foreground
The cooker is added to the BBServer and then detached creating a copy of the cooker in the process, if the server isn't in foreground it cause fd leaks on inotify this can be see using many instances of tinfoil. Example: from bb.tinfoil import Tinfoil while True: with Tinfoil() as tinfoil: input("Pre\n") tinfoil.prepare(config_only=True) input("Post\n") [YOCTO #10873] Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xlib/bb/main.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bb/main.py b/lib/bb/main.py
index 443f5ec2fd..3ff43cf9ae 100755
--- a/lib/bb/main.py
+++ b/lib/bb/main.py
@@ -367,6 +367,7 @@ def start_server(servermodule, configParams, configuration, features):
raise
if not configParams.foreground:
server.detach()
+ cooker.shutdown()
cooker.lock.close()
return server