From: Ewan Mellor Date: Sun, 28 Jan 2007 18:39:17 +0000 (+0000) Subject: Match recent changes to the task class in XenAPI with the get_record call here. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15368^2~57 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=6a288c4b02f4f127984022eb024c4635e0196137;p=xen.git Match recent changes to the task class in XenAPI with the get_record call here. Signed-off-by: Ewan Mellor --- diff --git a/tools/python/xen/xend/XendTask.py b/tools/python/xen/xend/XendTask.py index d4de65b566..92d5fdd732 100644 --- a/tools/python/xen/xend/XendTask.py +++ b/tools/python/xen/xend/XendTask.py @@ -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):