Author: eallen
Date: 2008-12-08 15:21:01 -0500 (Mon, 08 Dec 2008)
New Revision: 2951
Modified:
mgmt/trunk/cumin/python/cumin/model.py
Log:
Adding sync method to local Pool class to allow background xml to be generated.
Modified: mgmt/trunk/cumin/python/cumin/model.py
===================================================================
--- mgmt/trunk/cumin/python/cumin/model.py 2008-12-08 19:33:25 UTC (rev 2950)
+++ mgmt/trunk/cumin/python/cumin/model.py 2008-12-08 20:21:01 UTC (rev 2951)
@@ -1867,8 +1867,10 @@
for coll in Collector.select("pool='%s'" % id):
return Pool(coll)
get = classmethod(get)
-
+ def sync(self):
+ pass
+
class CuminPool(CuminClass):
def __init__(self, model):
super(CuminPool, self).__init__(model, "pool", Pool)