[Yum-devel] [PATCH 2/2] Fix the not possible yet, edge case slots deadlock.

James Antill james at and.org
Tue Jun 29 14:20:21 UTC 2010


---
 yum/plugins.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/yum/plugins.py b/yum/plugins.py
index a71c10f..77b38cf 100644
--- a/yum/plugins.py
+++ b/yum/plugins.py
@@ -99,7 +99,7 @@ SLOT_TO_CONDUIT = {
     }
 
 # Enumerate all slot names
-SLOTS = SLOT_TO_CONDUIT.keys()
+SLOTS = sorted(SLOT_TO_CONDUIT.keys())
 
 class PluginYumExit(Exception):
     '''Used by plugins to signal that yum should stop
-- 
1.7.0.1



More information about the Yum-devel mailing list