diff --git a/Halforbit.DataStores/Implementation/ShardedDataStore.cs b/Halforbit.DataStores/Implementation/ShardedDataStore.cs index a9f1a0c..aa3175e 100644 --- a/Halforbit.DataStores/Implementation/ShardedDataStore.cs +++ b/Halforbit.DataStores/Implementation/ShardedDataStore.cs @@ -185,7 +185,7 @@ IDataStore ResolveStore(string shardId) return shardStore; } - throw new ArgumentException($"A shard with id '{_keyToShardId}' is not configured."); + throw new ArgumentException($"A shard with id '{shardId}' is not configured."); } IDataStore ResolveStore(TKey key) => ResolveStore(_keyToShardId(key));