Skip to content

Commit

Permalink
update for 23.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastientromp committed Jun 2, 2022
1 parent e06b6cb commit 8580bd2
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 30 deletions.
51 changes: 25 additions & 26 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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"elementtree": "^0.1.7",
"immutable": "3.8.2",
"jszip": "^3.7.1",
"lodash-es": "4.17.15",
"lodash-es": "^4.17.21",
"mysql": "^2.17.1",
"ngx-logger": "3.3.11",
"node-fetch": "^2.6.7",
Expand Down
2 changes: 1 addition & 1 deletion src/stats-builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class StatsBuilder {
return;
}

// if (parseInt(message.buildNumber) > 130051) {
// if (parseInt(message.buildNumber) > 139719) {
// return;
// }

Expand Down
5 changes: 3 additions & 2 deletions src/trigger-sync-reprocess.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@ 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 = 199703340;
const endId = 199896855;
const startId = 219_616_725;
const endId = 219_871_148;
const query = `
SELECT * FROM replay_summary
where gameMode = 'ranked'
and playerRank is not null
and id > ${startId}
and id < ${endId}
and buildNumber = 139963
order by id asc;
`;
console.log('query', query);
Expand Down

0 comments on commit 8580bd2

Please sign in to comment.