Skip to content

Commit

Permalink
fix line that was missed in #254
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianburckhardt committed Apr 24, 2023
1 parent 2ca5422 commit 6e1ec94
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void UpdateTargetSizes()
int numberOfStores = this.stores.Count;
if (numberOfStores > 0)
{
long targetSize = this.maxCacheSize / this.stores.Count;
long targetSize = this.maxCacheSize / numberOfStores;
foreach (var s in this.stores.Keys)
{
s.SetTargetSize(targetSize);
Expand Down

0 comments on commit 6e1ec94

Please sign in to comment.