Skip to content

Commit

Permalink
Increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Oct 28, 2024
1 parent ba13efb commit 3eca610
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GlobalRankLookupCache/Controllers/BeatmapItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ private async Task repopulateScores()
{
var users = new HashSet<int>();

cmd.CommandTimeout = 180;
cmd.CommandTimeout = 600;
cmd.CommandText = $"SELECT user_id, score FROM {highScoresTable} WHERE beatmap_id = {beatmapId} AND hidden = 0";

Console.Write(isRepopulate ? "r" : "p");
Expand Down

0 comments on commit 3eca610

Please sign in to comment.