PaulAngus commented on issue #3252: Load balancer protocols bug
URL: https://github.com/apache/cloudstack/issues/3252#issuecomment-556033342
 
 
   I believe that the issue is here:
   
https://github.com/apache/cloudstack/blob/master/ui/scripts/network.js#L6846-L6862
   
   
![image](https://user-images.githubusercontent.com/4810220/69247933-341b4a80-0ba3-11ea-9c6e-d46d1aa6f115.png)
   
   Enumerating the protocols is introducting a space after '.protocol.', the 
label cannot then be resolved by the language files.
   
   ```
       var protocols = protocolCapabilities.value.split(',');
   
           if (!protocols) {
               return [];
           }
   
           var data = [];
           $(protocols).each(function() {
               data.push({id: this.valueOf(), name: this.valueOf(), 
description: _l('label.lb.protocol.' + this.valueOf())});
           });
   
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to