From e7baec5dbb05234002beabf7d4ce5d1eaf987b6c Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Thu, 1 Mar 2007 20:49:33 +0000 Subject: Make sure pids are appropriately removed from portage.process.spawned_pids. svn path=/main/trunk/; revision=6111 --- pym/emerge/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pym') diff --git a/pym/emerge/__init__.py b/pym/emerge/__init__.py index 1486f4c5e..5ecba4aa8 100644 --- a/pym/emerge/__init__.py +++ b/pym/emerge/__init__.py @@ -4020,13 +4020,13 @@ def action_sync(settings, trees, mtimedb, myopts, myaction): # This is the same code rsync uses for timeout. exitcode = 30 else: - if mypids: - portage.process.spawned_pids.remove(mypids[0]) if exitcode != os.EX_OK: if exitcode & 0xff: exitcode = (exitcode & 0xff) << 8 else: exitcode >> 8 + if mypids: + portage.process.spawned_pids.remove(mypids[0]) if content: try: servertimestamp = time.mktime(time.strptime( -- cgit v1.2.3-1-g7c22