mirror of https://github.com/apache/cloudstack.git
Added missing guest type to the network response
This commit is contained in:
parent
2ef551874a
commit
6dcc1691a1
|
|
@ -2156,6 +2156,8 @@ public class ApiResponseHelper implements ResponseGenerator {
|
|||
if (network.getTrafficType() != null) {
|
||||
response.setTrafficType(network.getTrafficType().name());
|
||||
}
|
||||
|
||||
response.setGuestIpType(network.getGuestType().toString());
|
||||
|
||||
// get start ip and end ip of corresponding vlan
|
||||
List<? extends Vlan> vlan = ApiDBUtils.listVlanByNetworkId(network.getId());
|
||||
|
|
|
|||
Loading…
Reference in New Issue