mirror of https://github.com/apache/cloudstack.git
Admin cannot see VMs on port forwarding page
On commir a902443708 the 'listAll=true'
is removed. On some places the domainid and accountid are added but not
on these. I added them now.
It's either doing this, or readding listAll is true. I've seeing other
folks doing that so let's see what performs best.
This commit is contained in:
parent
456d854480
commit
f186181910
|
|
@ -3526,6 +3526,8 @@
|
|||
if ('vpc' in args.context) {
|
||||
var data = {
|
||||
//listAll: true, //do not pass listAll to listNetworks under VPC
|
||||
domainid: args.context.vpc[0].domainid,
|
||||
account: args.context.vpc[0].account,
|
||||
supportedservices: 'Lb'
|
||||
};
|
||||
if (args.context.ipAddresses[0].associatednetworkid == null) {
|
||||
|
|
@ -4158,6 +4160,8 @@
|
|||
if ('vpc' in args.context) {
|
||||
var data = {
|
||||
//listAll: true, //do not pass listAll to listNetworks under VPC
|
||||
domainid: args.context.vpc[0].domainid,
|
||||
account: args.context.vpc[0].account,
|
||||
supportedservices: 'PortForwarding'
|
||||
};
|
||||
if (args.context.ipAddresses[0].associatednetworkid == null) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue