Skip to content

Commit

Permalink
Update queries.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
howardchung authored Sep 15, 2024
1 parent d57640b commit 1edfd86
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion store/queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,8 @@ export async function getMatchDataFromBlobWithMetadata(
if (!archived) {
if (!api && backfill) {
redisCount(redis, 'steam_api_backfill');
api = await tryFetchApiData(matchId, true);
// Disable the backfill for now since GetMatchDetails is broken as of June 2024
// api = await tryFetchApiData(matchId, true);
if (api) {
odData.backfill_api = true;
}
Expand All @@ -751,6 +752,7 @@ export async function getMatchDataFromBlobWithMetadata(
}
if (!gcdata && backfill) {
redisCount(redis, 'steam_gc_backfill');
// Disable for now since volume is too high
// gcdata = await tryFetchGcData(matchId, getPGroup(api));
if (gcdata) {
odData.backfill_gc = true;
Expand Down

0 comments on commit 1edfd86

Please sign in to comment.