Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
sbarakett opened this issue Aug 14, 2024 · 1 comment
Labels
enhancement New feature or request

Comments

@sbarakett
Copy link

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.

@sbarakett sbarakett added the enhancement New feature or request label Aug 14, 2024
@sbarakett
Copy link
Author

same as #91

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant