rrs/tools: Remove call to tinfoil shutdown method.

Tinfoil shutdown was not accepted as patch into bitbake because
this is a simple solution to a big problem.

Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
This commit is contained in:
Aníbal Limón 2015-07-10 11:24:04 -05:00
parent fab6365756
commit 3c60ef2f19
2 changed files with 0 additions and 5 deletions

View File

@ -158,8 +158,6 @@ def do_initial(layerbranch, ct, logger):
_create_upgrade(recipe_data, layerbranch, '', title,
info, logger, initial=True)
tinfoil.shutdown()
utils.runcmd("git checkout master -f", repodir, logger=logger)
utils.runcmd("git branch -D %s" % (branch_name_tmp), repodir, logger=logger)
@ -190,7 +188,6 @@ def do_loop(layerbranch, ct, logger):
for recipe_data in recipes:
_create_upgrade(recipe_data, layerbranch, ct, title,
info, logger)
tinfoil.shutdown()
utils.runcmd("git checkout master -f", repodir, logger=logger)
utils.runcmd("git branch -D %s" % (branch_name_tmp), repodir, logger=logger)

View File

@ -140,8 +140,6 @@ if __name__=="__main__":
logger.debug('%s: layer branch %s, pv %s, upstream (%s)' % (recipe.pn,
str(layerbranch), recipe.pv, str(ru)))
tinfoil.shutdown()
transaction.commit()
transaction.leave_transaction_management()