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.
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:
Thanks for any attention you put towards this.