Hi,
I’m trying to setup OSS cluster by connecting to it using TCP client. I set gossip seeds manually, however exceptions about missing dns is popping out.
My connection is the same as in documentation:
EventStoreConnection.Create(
ConnectionSettings.Create().KeepReconnecting(),
ClusterSettings.Create()
.WithGossipTimeoutOf(TimeSpan.FromMilliseconds(500))
.WithGossipSeeds(new []
{
new IPEndPoint(IPAddress.Parse("192.168.0.1"), 2113),
new IPEndPoint(IPAddress.Parse("192.168.0.2"), 2113),
new IPEndPoint(IPAddress.Parse("192.168.0.3"), 2113)
}));
This results in DNS validation exceptions. I’ve looked into client source and it seems it always requires to pass valid dns record.
Am I missing something here or connection using gossip seeds just doesn’t work?
Thanks for the help.