PlayFab/consuldotnet

Consul port configuration

Closed this issue · 1 comments

Is there anyway to change the default consul 8500 port?

Regards

Create your ConsulClient object and pass in a delegate to set the Address property of the configuration to a valid URI during construction:

var client = new ConsulClient((c) => { c.Address = new Uri("http://127.0.0.1:1337"); });