From 228fa6c860b6df098d98a974db638f72960d22f8 Mon Sep 17 00:00:00 2001 From: Aaron Stannard Date: Thu, 6 Oct 2022 09:29:45 -0500 Subject: [PATCH] fix `Shard.LoadingEntityIdsFailed` log message Was using the wrong timeout value earlier. --- src/contrib/cluster/Akka.Cluster.Sharding/Shard.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/contrib/cluster/Akka.Cluster.Sharding/Shard.cs b/src/contrib/cluster/Akka.Cluster.Sharding/Shard.cs index 139fd0a53a5..bde0e262e19 100644 --- a/src/contrib/cluster/Akka.Cluster.Sharding/Shard.cs +++ b/src/contrib/cluster/Akka.Cluster.Sharding/Shard.cs @@ -1150,7 +1150,7 @@ private void LoadingEntityIdsFailed() { Log.Error("{0}: Failed to load initial entity ids from remember entities store within [{1}], stopping shard for backoff and restart", _typeName, - _settings.TuningParameters.WaitingForStateTimeout); + _settings.TuningParameters.UpdatingStateTimeout); // parent ShardRegion supervisor will notice that it terminated and will start it again, after backoff Context.Stop(Self); }