aboutsummaryrefslogtreecommitdiffstats
path: root/rrs/tools/rrs_upstream_history.py
diff options
context:
space:
mode:
authorAníbal Limón <anibal.limon@linux.intel.com>2017-01-05 15:44:06 -0600
committerPaul Eggleton <paul.eggleton@linux.intel.com>2018-05-04 23:57:52 +1200
commitd13329be1dcce78fad5c5d907531a4dfdc237fed (patch)
treea300af972d506cbd2c38f0aa869361f4f31c7cd1 /rrs/tools/rrs_upstream_history.py
parent8ed223e13c1980e2f47202685db11fd407d05905 (diff)
downloadopenembedded-core-contrib-d13329be1dcce78fad5c5d907531a4dfdc237fed.tar.gz
rrs/tools: Upgrade to use new API of tinfoil
The new client/server API of tinfoil requires explicit call of shutdown method to send the event for finalize cooker process. [YOCTO #10863] Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Diffstat (limited to 'rrs/tools/rrs_upstream_history.py')
-rwxr-xr-xrrs/tools/rrs_upstream_history.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/rrs/tools/rrs_upstream_history.py b/rrs/tools/rrs_upstream_history.py
index dfb1604ad7..09a246a68c 100755
--- a/rrs/tools/rrs_upstream_history.py
+++ b/rrs/tools/rrs_upstream_history.py
@@ -162,6 +162,7 @@ if __name__=="__main__":
fetchdir, settings, logger, recipe_files=recipe_files)
if not recipes:
+ tinfoil.shutdown()
continue
for recipe_data in recipes:
@@ -194,3 +195,5 @@ if __name__=="__main__":
logger.debug('%s: layer branch %s, pv %s, upstream (%s)' % (recipe.pn,
str(layerbranch), recipe.pv, str(ru)))
+
+ tinfoil.shutdown()