-
Notifications
You must be signed in to change notification settings - Fork 2k
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
ServiceFabric : A cluster id has not been configured, BUG #4226
Comments
You need to call |
it remove this code
it work good ServiceFabric don't need old method UseConfiguration?
|
That's correct, Service Fabric does not require the old configuration method anymore |
it not work , the bug is contingencies~
|
This will be fixed in the next release, it was fixed in #4211. builder.Configure<EndpointOptions>(options =>
{
options.AdvertisedIPAddress = IPAddress.Loopback;
options.ConfigureFromServiceContext(serviceContext);
options.SiloListeningEndpoint = new IPEndPoint(IPAddress.Any, options.SiloPort);
options.GatewayListeningEndpoint = new IPEndPoint(IPAddress.Any, options.GatewayPort);
}); |
Both the server and the client need to add this code server :
client:
it work good I don't think the error message is clear enough. |
what's error with me?
how to do it?
The text was updated successfully, but these errors were encountered: