You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by le...@apache.org on 2005/07/05 21:18:18 UTC

svn commit: r209308 - /gump/branches/Gump3/pygump/python/gump/engine/algorithm.py

Author: leosimons
Date: Tue Jul  5 12:18:16 2005
New Revision: 209308

URL: http://svn.apache.org/viewcvs?rev=209308&view=rev
Log:
Fix a problem with the algorithm leading to a recursive cause list if a module fails to update.

 * pygump/python/gump/engine/algorithm.py: if a module fails to update, don't mark the module as failing because of itself, since that doesn't work with the cause detection algorithms.

Modified:
    gump/branches/Gump3/pygump/python/gump/engine/algorithm.py

Modified: gump/branches/Gump3/pygump/python/gump/engine/algorithm.py
URL: http://svn.apache.org/viewcvs/gump/branches/Gump3/pygump/python/gump/engine/algorithm.py?rev=209308&r1=209307&r2=209308&view=diff
==============================================================================
--- gump/branches/Gump3/pygump/python/gump/engine/algorithm.py (original)
+++ gump/branches/Gump3/pygump/python/gump/engine/algorithm.py Tue Jul  5 12:18:16 2005
@@ -198,7 +198,6 @@
         
         # check for update errors
         if check_module_update_failure(module):
-            mark_failure(module, module)
             # if module update failed, don't try and attempt to build contained
             # projects either.
             for project in module.projects.values():