Skip to content

Commit

Permalink
fix gossip stats regression (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
vazois committed Mar 27, 2024
1 parent a9537ba commit e07686c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions libs/server/Metrics/Info/GarnetInfoMetrics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ private void PopulateStatsInfo(StoreWrapper storeWrapper)
var tmp = new MetricsItem[statsInfo.Length + gossipStats.Length];
Array.Copy(statsInfo, 0, tmp, 0, statsInfo.Length);
Array.Copy(gossipStats, 0, tmp, statsInfo.Length, gossipStats.Length);
statsInfo = tmp;
}
}

Expand Down

0 comments on commit e07686c

Please sign in to comment.