From 6ffad7f723d6dc6a133fb21987f7c6530068a6d0 Mon Sep 17 00:00:00 2001 From: Stanley Dimant Date: Wed, 5 Oct 2022 23:21:59 +0200 Subject: [PATCH] fix servername->shardname --- .../Services/GrpcClientIdentificationService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MareSynchronosServer/MareSynchronosServer/Services/GrpcClientIdentificationService.cs b/MareSynchronosServer/MareSynchronosServer/Services/GrpcClientIdentificationService.cs index 5135fc1..e49760e 100644 --- a/MareSynchronosServer/MareSynchronosServer/Services/GrpcClientIdentificationService.cs +++ b/MareSynchronosServer/MareSynchronosServer/Services/GrpcClientIdentificationService.cs @@ -24,7 +24,7 @@ public class GrpcClientIdentificationService : IHostedService public GrpcClientIdentificationService(ILogger logger, IdentificationService.IdentificationServiceClient gprcIdentClient, MareMetrics metrics, IConfiguration configuration) { var config = configuration.GetSection("MareSynchronos"); - _shardName = config.GetValue("ServerName", "Main"); + _shardName = config.GetValue("ShardName", "Main"); _logger = logger; _grpcIdentClient = gprcIdentClient; _metrics = metrics;