This is an automated email from the ASF dual-hosted git repository.
rohit pushed a commit to branch 4.15
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.15 by this push:
new 5396325 server: Bug/false positive success message vm start (#5148)
5396325 is described below
commit 53963256d85aef95928bbdddd87963c78721e183
Author: DK101010 <[email protected]>
AuthorDate: Sun Jun 27 03:10:30 2021 +0200
server: Bug/false positive success message vm start (#5148)
* add throws statement during the retry process
* Update
engine/orchestration/src/main/java/org/apache/cloudstack/engine/cloud/entity/api/VMEntityManagerImpl.java
Co-authored-by: dahn <[email protected]>
Co-authored-by: DK101010 <[email protected]>
Co-authored-by: dahn <[email protected]>
---
.../apache/cloudstack/engine/cloud/entity/api/VMEntityManagerImpl.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/engine/orchestration/src/main/java/org/apache/cloudstack/engine/cloud/entity/api/VMEntityManagerImpl.java
b/engine/orchestration/src/main/java/org/apache/cloudstack/engine/cloud/entity/api/VMEntityManagerImpl.java
index 567675a..02ffb37 100644
---
a/engine/orchestration/src/main/java/org/apache/cloudstack/engine/cloud/entity/api/VMEntityManagerImpl.java
+++
b/engine/orchestration/src/main/java/org/apache/cloudstack/engine/cloud/entity/api/VMEntityManagerImpl.java
@@ -253,6 +253,8 @@ public class VMEntityManagerImpl implements VMEntityManager
{
}
_itMgr.start(vm.getUuid(), params, plan, null);
+ } else {
+ throw ex;
}
}
} else {