mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 11:13:09 +02:00
This commit is contained in:
parent
ef0793311f
commit
3cad494404
1 changed files with 0 additions and 13 deletions
13
src/index.ts
13
src/index.ts
|
@ -146,22 +146,9 @@ async function init(): Promise<Config> {
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Try to connect to MongoDB
|
|
||||||
checkMongoDb(config);
|
|
||||||
|
|
||||||
return config;
|
return config;
|
||||||
}
|
}
|
||||||
|
|
||||||
function checkMongoDb(config: Config) {
|
|
||||||
const mongoDBLogger = new Logger('MongoDB');
|
|
||||||
const u = config.mongodb.user ? encodeURIComponent(config.mongodb.user) : null;
|
|
||||||
const p = config.mongodb.pass ? encodeURIComponent(config.mongodb.pass) : null;
|
|
||||||
const uri = `mongodb://${u && p ? `${u}:****@` : ''}${config.mongodb.host}:${config.mongodb.port}/${config.mongodb.db}`;
|
|
||||||
mongoDBLogger.info(`Connecting to ${uri}`);
|
|
||||||
require('./db/mongodb');
|
|
||||||
mongoDBLogger.succ('Connectivity confirmed');
|
|
||||||
}
|
|
||||||
|
|
||||||
function spawnWorkers(limit: number) {
|
function spawnWorkers(limit: number) {
|
||||||
return new Promise(res => {
|
return new Promise(res => {
|
||||||
// Count the machine's CPUs
|
// Count the machine's CPUs
|
||||||
|
|
Loading…
Reference in a new issue