Added queue debugging.
This commit is contained in:
parent
db3ec58ad9
commit
f95a0ae48c
6 changed files with 68 additions and 4 deletions
|
|
@ -78,9 +78,6 @@ const config = require('../config.json');
|
|||
const port = config.port;
|
||||
const dbUrl = `mongodb://${config.db.user}:${config.db.pass}@${config.db.address}:${config.db.port}/${config.db.database}`;
|
||||
|
||||
//Check for insecure config
|
||||
configCheck.securityCheck();
|
||||
|
||||
//Define express
|
||||
const app = express();
|
||||
|
||||
|
|
@ -234,6 +231,9 @@ async function asyncKickStart(){
|
|||
//Kick off scheduled-jobs
|
||||
scheduler.kickoff();
|
||||
|
||||
//Check for insecure config
|
||||
configCheck.securityCheck();
|
||||
|
||||
//Increment launch counter
|
||||
await statModel.incrementLaunchCount();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue