CLOUDSTACK-5669: Return true when deleteVmSnapshot job result status is null

This commit is contained in:
Kishan Kavala 2013-12-31 12:48:55 +05:30
parent 68c4acce7d
commit e4462f3626
1 changed files with 1 additions and 1 deletions

View File

@ -715,7 +715,7 @@ public class VMSnapshotManagerImpl extends ManagerBase implements VMSnapshotMana
if (jobResult instanceof Boolean)
return (Boolean)jobResult;
return false;
return true;
}
}