[rhmessaging-commits] rhmessaging commits: r4320 - mgmt/newdata/cumin/python/cumin.

rhmessaging-commits at lists.jboss.org rhmessaging-commits at lists.jboss.org
Tue Sep 21 15:01:38 EDT 2010


Author: eallen
Date: 2010-09-21 15:01:38 -0400 (Tue, 21 Sep 2010)
New Revision: 4320

Modified:
   mgmt/newdata/cumin/python/cumin/model.py
Log:
Fix BZ 635882: Make "User" job ad read-only

Modified: mgmt/newdata/cumin/python/cumin/model.py
===================================================================
--- mgmt/newdata/cumin/python/cumin/model.py	2010-09-21 17:59:24 UTC (rev 4319)
+++ mgmt/newdata/cumin/python/cumin/model.py	2010-09-21 19:01:38 UTC (rev 4320)
@@ -1557,6 +1557,31 @@
         prop.group = "Dates"
         prop.writable = False
 
+        prop = DateAdProperty(self, "LastRejMatchTime")
+        prop.group = "Dates"
+        prop.writable = False
+
+        # other
+        prop = AdProperty(self, "User")
+        prop.group = "Other"
+        prop.writable = False
+
+        prop = AdProperty(self, "MinHosts")
+        prop.group = "Other"
+        prop.writable = False
+
+        prop = AdProperty(self, "RemoteUserCpu")
+        prop.group = "Other"
+        prop.writable = False
+
+        prop = AdProperty(self, "DiskUsage")
+        prop.group = "Other"
+        prop.writable = False
+
+        prop = AdProperty(self, "ImageSize")
+        prop.group = "Other"
+        prop.writable = False
+
     class JobStatusProperty(AdProperty):
         def render_status(self, session, status):
             return JobStatusInfo.get_status_string(status)



More information about the rhmessaging-commits mailing list