Skip to content

Commit

Permalink
Fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-eason committed Jan 14, 2024
1 parent 6ec6908 commit 1146246
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server/db/recalculateRankings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async function startup() {
poolSize: 1
});

container = containerLoader(config, null);
container = containerLoader(config);

console.log('Recalculating all player ranks...');

Expand Down
2 changes: 1 addition & 1 deletion server/jobs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import SendReviewRemindersJob from './sendReviewReminders';
let mongo;

async function startup() {
const container = containerLoader(config, null);
const container = containerLoader(config);

mongo = await mongooseLoader(config, {
unlockJobs: true,
Expand Down

0 comments on commit 1146246

Please sign in to comment.