You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ki...@apache.org on 2013/12/31 08:19:19 UTC

git commit: updated refs/heads/4.3 to e4462f3

Updated Branches:
  refs/heads/4.3 68c4acce7 -> e4462f362


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


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/e4462f36
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/e4462f36
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/e4462f36

Branch: refs/heads/4.3
Commit: e4462f3626329188d09248bfcacab9670d2a84e2
Parents: 68c4acc
Author: Kishan Kavala <ki...@cloud.com>
Authored: Tue Dec 31 12:48:55 2013 +0530
Committer: Kishan Kavala <ki...@cloud.com>
Committed: Tue Dec 31 12:48:55 2013 +0530

----------------------------------------------------------------------
 server/src/com/cloud/vm/snapshot/VMSnapshotManagerImpl.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/e4462f36/server/src/com/cloud/vm/snapshot/VMSnapshotManagerImpl.java
----------------------------------------------------------------------
diff --git a/server/src/com/cloud/vm/snapshot/VMSnapshotManagerImpl.java b/server/src/com/cloud/vm/snapshot/VMSnapshotManagerImpl.java
index 31079cd..33f87cc 100644
--- a/server/src/com/cloud/vm/snapshot/VMSnapshotManagerImpl.java
+++ b/server/src/com/cloud/vm/snapshot/VMSnapshotManagerImpl.java
@@ -715,7 +715,7 @@ public class VMSnapshotManagerImpl extends ManagerBase implements VMSnapshotMana
             if (jobResult instanceof Boolean)
                 return (Boolean)jobResult;
 
-            return false;
+            return true;
         }
     }