On Mar 13, 2008, at 1:30 PM, daviz00 wrote:
They left out a line in MinMaxThreshold.py which is found in / Products/ZenModel

EXISTING CONTENTS
class MinMaxThresholdInstance(ThresholdInstance):

   def __init__(self, id, context, dpNames,
                minval, maxval, eventClass, severity, escalateCount):
       self.count = {}
       self._context = context
       self.id = id
       self.minimum = minval

NEW CONTENTS
class MinMaxThresholdInstance(ThresholdInstance):
   count = {}
   def __init__(self, id, context, dpNames,
                minval, maxval, eventClass, severity, escalateCount):
       self.count = {}
       self._context = context
       self.id = id
       self.minimum = minval

This will fix the problem. It looks like there was a problem back- porting r8290 to the 2.1.x branch.

_______________________________________________
zenoss-users mailing list
[email protected]
http://lists.zenoss.org/mailman/listinfo/zenoss-users

Reply via email to