Yeela Kaplan has uploaded a new change for review.
Change subject: clientIF: return doneCode in getDiskAlignment ......................................................................
clientIF: return doneCode in getDiskAlignment
Engine expects a dictionary instead of an integer(0)
Change-Id: I9effa0c05b711cd2f1983009f92819cb315ec9f0 Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=998411 Signed-off-by: Yeela Kaplan ykaplan@redhat.com --- M vdsm/clientIF.py 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/37/18737/1
diff --git a/vdsm/clientIF.py b/vdsm/clientIF.py index c2a25fc..38822fe 100644 --- a/vdsm/clientIF.py +++ b/vdsm/clientIF.py @@ -382,7 +382,7 @@ finally: self.teardownVolumePath(drive)
- return {'status': 0, 'alignment': aligning} + return {'status': doneCode, 'alignment': aligning}
def createVm(self, vmParams): with self.vmContainerLock: