Hi,
Is there any particular reason for which at line 200 you are doing:
table.insert(addresses, node.Node.Address .. ":" .. node.Service.Port)
instead of
table.insert(addresses, node.Service.Address .. ":" .. node.Service.Port)
That will effectively add the Consul node address instead of the actual Service registration address ?
Thanks