diff --git a/store/insert.ts b/store/insert.ts index 62969c105..e02dec49c 100644 --- a/store/insert.ts +++ b/store/insert.ts @@ -684,6 +684,13 @@ export async function insertMatch( attempts, }, ); + // Also queue the job for gcdata only in case parsing is held up + await addJob({ + name: 'gcQueue', + data: { + match_id: match.match_id, + }, + }); return job; }