[yum-cvs] yum/depsolve.py

Tim Lauridsen timlau at linux.duke.edu
Fri Nov 9 08:26:59 UTC 2007


 yum/depsolve.py |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 34e04ceca6d5ac6ef6c1112efc1e8b6b837e4eeb
Author: Tim Lauridsen <tla at rasmil.dk>
Date:   Wed Nov 7 19:57:38 2007 +0100

    Fix for the depsolver going into endless loop, in rare situations big transaction with lot of local packages (rhbz #360291)

diff --git a/yum/depsolve.py b/yum/depsolve.py
index cde96f1..0455b09 100644
--- a/yum/depsolve.py
+++ b/yum/depsolve.py
@@ -484,7 +484,8 @@ class Depsolve(object):
             if pkgmode in ['i', 'u']:
                 self.verbose_logger.log(logginglevels.DEBUG_2,
                     '%s already in ts, skipping this one', n)
-                checkdeps = 1
+                # FIXME: Remove this line, if it is not needed ?
+                # checkdeps = 1
                 return checkdeps, missingdep
         
 



More information about the Yum-cvs-commits mailing list