Skip to content

new features, include pool server names in pool class when converting to AS3 #106

Description

@sbarakett

When running function convert to AS3 with ACC, I would love to see these two new features.

The conversion ignores pool members names, and just gets the IP addresses, so when pushing to a new F5, you loose the node names.

what you get from pool:
"members": [
{
"addressDiscovery": "static",
"servicePort": 443,
"serverAddresses": [
"x.x.x.x",
"x.x.x.x"
],
"shareNodes": true
}
],

what I would like to see:

        "members": [
            {
            "addressDiscovery": "static",
            "servicePort": 443,
            "servers":[
                { 
                    "name": "nodename",
                    "address": "x.x.x.x" 
                },
                { 
                    "name": "nodename"",
                    "address": "x.x.x.x" 
                }
                ]
            }
        ],

Thanks for any attention you put towards this.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions