Match recent changes to the task class in XenAPI with the get_record call here.
authorEwan Mellor <ewan@xensource.com>
Sun, 28 Jan 2007 18:39:17 +0000 (18:39 +0000)
committerEwan Mellor <ewan@xensource.com>
Sun, 28 Jan 2007 18:39:17 +0000 (18:39 +0000)
Signed-off-by: Ewan Mellor <ewan@xensource.com>
tools/python/xen/xend/XendTask.py

index d4de65b56693332fb42b1bdc8048865fea6b3ff2..92d5fdd73295259395d5c220b8167ca6dfdca39d 100644 (file)
@@ -67,7 +67,6 @@ class XendTask(threading.Thread):
         self.status = XEN_API_TASK_STATUS_TYPE[0]
 
         self.progress = 0
-        self.eta = None  # TODO: we have no time estimates
         self.type = return_type
         self.uuid = uuid
         
@@ -141,11 +140,11 @@ class XendTask(threading.Thread):
             'name_description': self.name_description,
             'status': self.status,
             'progress': self.get_progress(),
-            'eta': self.eta,
             'type': self.type,
             'result': self.result,
             'error_code': self.error_code,
             'error_info': self.error_info,
+            'allowed_operations': {},
         }
 
     def get_progress(self):