Remove needless try-catch
This commit is contained in:
parent
a3bd039bcf
commit
3df86fdab3
1 changed files with 3 additions and 7 deletions
10
src/index.ts
10
src/index.ts
|
@ -110,13 +110,9 @@ async function init(): Promise<Config> {
|
|||
|
||||
// Try to connect to MongoDB
|
||||
let mongoDBLogger = new Logger('MongoDB');
|
||||
try {
|
||||
const db = require('./db/mongodb').default;
|
||||
mongoDBLogger.info('Successfully connected');
|
||||
db.close();
|
||||
} catch (e) {
|
||||
throw e;
|
||||
}
|
||||
const db = require('./db/mongodb').default;
|
||||
mongoDBLogger.info('Successfully connected');
|
||||
db.close();
|
||||
|
||||
return config;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue