This is an automated email from the ASF dual-hosted git repository.
rohit pushed a commit to branch 4.11
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.11 by this push:
new 2a06869 CLOUDSTACK-10340: Add setter to hypervisorType in
VMInstanceVO (#2504)
2a06869 is described below
commit 2a068696f8620410326a3984b498c7e9f1fd2ec5
Author: Rohit Yadav <[email protected]>
AuthorDate: Fri Mar 23 11:48:13 2018 +0530
CLOUDSTACK-10340: Add setter to hypervisorType in VMInstanceVO (#2504)
This adds a missing setter to set hypervisorType in VMInstanceVO.
Signed-off-by: Rohit Yadav <[email protected]>
---
engine/schema/src/com/cloud/vm/VMInstanceVO.java | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/engine/schema/src/com/cloud/vm/VMInstanceVO.java
b/engine/schema/src/com/cloud/vm/VMInstanceVO.java
index b55e030..b0ebf24 100644
--- a/engine/schema/src/com/cloud/vm/VMInstanceVO.java
+++ b/engine/schema/src/com/cloud/vm/VMInstanceVO.java
@@ -267,6 +267,10 @@ public class VMInstanceVO implements VirtualMachine,
FiniteStateObject<State, Vi
return hypervisorType;
}
+ public void setHypervisorType(HypervisorType hypervisorType) {
+ this.hypervisorType = hypervisorType;
+ }
+
@Override
public Date getCreated() {
return created;
--
To stop receiving notification emails like this one, please contact
[email protected].