mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-02 20:02:29 +01:00
Fix KVM agent connection issue
non-static inner class can't be serialized, also it lacks no-args constructor.
This commit is contained in:
parent
4abb737c04
commit
75fc541754
@ -26,9 +26,11 @@ import com.cloud.network.Networks.RouterPrivateIpStrategy;
|
||||
import com.cloud.vm.VirtualMachine.State;
|
||||
|
||||
public class StartupRoutingCommand extends StartupCommand {
|
||||
public class VmState {
|
||||
public static class VmState {
|
||||
State state;
|
||||
String host;
|
||||
public VmState() {
|
||||
}
|
||||
public VmState(State state, String host) {
|
||||
this.state = state;
|
||||
this.host = host;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user