Skip to content

Commit

Permalink
remove premium
Browse files Browse the repository at this point in the history
  • Loading branch information
rogeralsing committed Jan 31, 2024
1 parent ac62b31 commit c27d399
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Proto.Cluster/Seed/SeedClientNodeActor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Proto.Cluster.Seed;

public class SeedClientNodeActor : IActor
{
public const string Name = "$premium_client_seed";
public const string Name = "$client_seed";
private readonly ILogger _logger;
private readonly SeedNodeClusterProviderOptions _options;
private ClusterTopology? _clusterTopology;
Expand Down Expand Up @@ -61,7 +61,7 @@ private async Task OnConnect(IContext context)
//
// try
// {
// var pid = PID.FromAddress(host + ":" + port, PremiumSeedNodeActor.Name);
// var pid = PID.FromAddress(host + ":" + port, SeedNodeActor.Name);
//
// var res = await context.System.Root
// .RequestAsync<JoinResponse>(
Expand Down
2 changes: 1 addition & 1 deletion src/Proto.Cluster/Seed/SeedNodeActor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace Proto.Cluster.Seed;

public class SeedNodeActor : IActor
{
public const string Name = "$premium_server_seed";
public const string Name = "$server_seed";
private readonly ILogger _logger;
private readonly SeedNodeClusterProviderOptions _options;
private ImmutableList<PID> _clients = ImmutableList<PID>.Empty;
Expand Down

0 comments on commit c27d399

Please sign in to comment.