Author: justi9
Date: 2008-09-19 17:46:52 -0400 (Fri, 19 Sep 2008)
New Revision: 2507
Modified:
mgmt/trunk/mint/python/mint/schema.py
Log:
Update mint schema with Job.Fetch
Modified: mgmt/trunk/mint/python/mint/schema.py
===================================================================
--- mgmt/trunk/mint/python/mint/schema.py 2008-09-19 21:38:33 UTC (rev 2506)
+++ mgmt/trunk/mint/python/mint/schema.py 2008-09-19 21:46:52 UTC (rev 2507)
@@ -837,6 +837,18 @@
conn.callMethod(originalId, classInfo, "Remove",
callback, args=actualArgs)
+ def Fetch(self, model, callback, File, Start, End, Data):
+ actualArgs = dict()
+ actualArgs["File"] = File
+ actualArgs["Start"] = Start
+ actualArgs["End"] = End
+ actualArgs["Data"] = Data
+ conn = model.connections[self.managedBroker]
+ classInfo = self.classInfos[self.managedBroker]
+ originalId = objectId(None, self.sourceScopeId, self.sourceObjectId)
+ conn.callMethod(originalId, classInfo, "Fetch",
+ callback, args=actualArgs)
+
class JobStats(SQLObject):
class sqlmeta:
lazyUpdate = True
Show replies by date