Merge pull request #12262 from jgriffiths1993/hf-12261

Replace Port with NodePort for creating LB members
This commit is contained in:
Robert Bailey 2015-08-18 09:14:30 -07:00
commit ac1457b7cf
1 changed files with 1 additions and 1 deletions

View File

@ -560,7 +560,7 @@ func (lb *LoadBalancer) CreateTCPLoadBalancer(name, region string, externalIP ne
_, err = members.Create(lb.network, members.CreateOpts{
PoolID: pool.ID,
ProtocolPort: ports[0].Port, //TODO: need to handle multi-port
ProtocolPort: ports[0].NodePort, //TODO: need to handle multi-port
Address: addr,
}).Extract()
if err != nil {