[rhmessaging-commits] rhmessaging commits: r2768 - mgmt/trunk/cumin/python/cumin.

rhmessaging-commits at lists.jboss.org rhmessaging-commits at lists.jboss.org
Sat Nov 8 12:50:07 EST 2008


Author: eallen
Date: 2008-11-08 12:50:07 -0500 (Sat, 08 Nov 2008)
New Revision: 2768

Modified:
   mgmt/trunk/cumin/python/cumin/exchange.py
Log:
For consistency, moved durability option in advanced options for exchange add. 

Modified: mgmt/trunk/cumin/python/cumin/exchange.py
===================================================================
--- mgmt/trunk/cumin/python/cumin/exchange.py	2008-11-08 17:48:36 UTC (rev 2767)
+++ mgmt/trunk/cumin/python/cumin/exchange.py	2008-11-08 17:50:07 UTC (rev 2768)
@@ -346,12 +346,12 @@
         self.exchange_type = self.ExchangeTypeField(app, "exchange_type")
         self.add_field(self.exchange_type)
         
-        self.durable = self.ExchangeDurabilityField(app, "durable")
-        self.add_field(self.durable)
-        
         self.more = MoreFieldSet(app, "more")
         self.add_field(self.more)
         
+        self.durable = self.ExchangeDurabilityField(app, "durable")
+        self.more.add_field(self.durable)
+        
         self.sequence = self.SequenceField(app, "sequence")
         self.more.add_field(self.sequence)
         




More information about the rhmessaging-commits mailing list