mirror of https://github.com/apache/cloudstack.git
Fix conflict resolution errors
Conflicts: api/src/com/cloud/network/ovs/OvsCreateTunnelAnswer.java
This commit is contained in:
parent
421862216e
commit
fbd5edc2e3
|
|
@ -24,7 +24,7 @@ public class OvsCreateTunnelAnswer extends Answer {
|
|||
//for debug info
|
||||
String fromIp;
|
||||
String toIp;
|
||||
String key;
|
||||
int key;
|
||||
String bridge;
|
||||
|
||||
public OvsCreateTunnelAnswer(Command cmd, boolean success, String details, String bridge) {
|
||||
|
|
@ -70,7 +70,7 @@ public class OvsCreateTunnelAnswer extends Answer {
|
|||
return toIp;
|
||||
}
|
||||
|
||||
public String getKey() {
|
||||
public int getKey() {
|
||||
return key;
|
||||
}
|
||||
|
||||
|
|
@ -79,4 +79,3 @@ public class OvsCreateTunnelAnswer extends Answer {
|
|||
}
|
||||
}
|
||||
|
||||
>>>>>>> 9f321ff... Open vSwitch tunnel manager
|
||||
|
|
|
|||
|
|
@ -656,6 +656,7 @@ public abstract class CitrixResourceBase implements ServerResource, HypervisorRe
|
|||
private synchronized Network configureTunnelNetwork(Connection conn, long networkId, long hostId, int key) {
|
||||
try {
|
||||
Network nw = findOrCreateTunnelNetwork(conn, networkId);
|
||||
String nwName = "OVSTunnel" + key;
|
||||
//Invoke plugin to setup the bridge which will be used by this network
|
||||
String bridge = nw.getBridge(conn);
|
||||
Map<String,String> nwOtherConfig = nw.getOtherConfig(conn);
|
||||
|
|
|
|||
Loading…
Reference in New Issue