Skip to content

Commit

Permalink
fix Shard.LoadingEntityIdsFailed log message (#6146)
Browse files Browse the repository at this point in the history
Was using the wrong timeout value earlier.
  • Loading branch information
Aaronontheweb committed Oct 6, 2022
1 parent 213ebb6 commit 24d1d7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/contrib/cluster/Akka.Cluster.Sharding/Shard.cs
Expand Up @@ -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);
}
Expand Down

0 comments on commit 24d1d7f

Please sign in to comment.