Skip to content

Commit

Permalink
update for 24.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastientromp committed Nov 7, 2022
1 parent 32346bb commit 3aa7916
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/extractor/vs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const extractViciousSyndicateStats = async (
prefs: Preferences,
): Promise<void> => {
// return;
if (+message.buildNumber > 150659) {
if (+message.buildNumber > 154818) {
return;
}

Expand Down
8 changes: 4 additions & 4 deletions src/trigger-sync-reprocess.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ const sns = new Sns();
// [1]: https://aws.amazon.com/blogs/compute/node-js-8-10-runtime-now-available-in-aws-lambda/
export default async (event): Promise<any> => {
const mysql = await getConnection();
const startId = 254043535;
const endId = 254658153;
const buildNumber = 150659;
const startId = 264744968;
const endId = 265025359;
const buildNumber = 154203;
const query = `
SELECT * FROM replay_summary
where gameMode = 'ranked'
and playerRank is not null
and id > ${startId}
and id < ${endId}
and buildNumber = ${buildNumber}
and buildNumber >= ${buildNumber}
order by id asc;
`;
console.log('query', query);
Expand Down

0 comments on commit 3aa7916

Please sign in to comment.