Author: eallen
Date: 2010-09-21 17:32:52 -0400 (Tue, 21 Sep 2010)
New Revision: 4324
Modified:
mgmt/newdata/cumin/python/cumin/grid/negotiator.py
mgmt/newdata/cumin/python/cumin/grid/scheduler.py
Log:
Fix for 635884: Removed the Start / Stop actions for Scheduler and Negotiator
Modified: mgmt/newdata/cumin/python/cumin/grid/negotiator.py
===================================================================
--- mgmt/newdata/cumin/python/cumin/grid/negotiator.py 2010-09-21 21:23:46 UTC (rev 4323)
+++ mgmt/newdata/cumin/python/cumin/grid/negotiator.py 2010-09-21 21:32:52 UTC (rev 4324)
@@ -46,8 +46,8 @@
self.add_attribute_column(cls.Machine)
self.add_attribute_column(cls.System)
- self.start = DaemonSelectionStart(app, self, "NEGOTIATOR")
- self.stop = DaemonSelectionStop(app, self, "NEGOTIATOR")
+ #self.start = DaemonSelectionStart(app, self, "NEGOTIATOR")
+ #self.stop = DaemonSelectionStop(app, self, "NEGOTIATOR")
class QmfGroupColumn(ItemTableColumn):
def __init__(self, app, name, getter, negotiator, task):
Modified: mgmt/newdata/cumin/python/cumin/grid/scheduler.py
===================================================================
--- mgmt/newdata/cumin/python/cumin/grid/scheduler.py 2010-09-21 21:23:46 UTC (rev 4323)
+++ mgmt/newdata/cumin/python/cumin/grid/scheduler.py 2010-09-21 21:32:52 UTC (rev 4324)
@@ -44,8 +44,8 @@
submitters = SubmitterSelector(app, "submitters", self.object)
self.view.add_tab(submitters)
- self.start = DaemonStart(app, self, "SCHEDD")
- self.stop = DaemonStop(app, self, "SCHEDD")
+ #self.start = DaemonStart(app, self, "SCHEDD")
+ #self.stop = DaemonStop(app, self, "SCHEDD")
class SchedulerPoolSubmissionSelector(PoolSubmissionSelector):
def get_data_values(self, session):
@@ -86,8 +86,8 @@
self.add_attribute_column(cls.TotalRunningJobs)
self.add_attribute_column(cls.TotalHeldJobs)
- self.start = DaemonSelectionStart(app, self, "SCHEDD")
- self.stop = DaemonSelectionStop(app, self, "SCHEDD")
+ #self.start = DaemonSelectionStart(app, self, "SCHEDD")
+ #self.stop = DaemonSelectionStop(app, self, "SCHEDD")
class SchedulerGeneralStatSet(StatSet):
def __init__(self, app, name, object):
Show replies by date