Remove needless try-catch

This commit is contained in:
Aya Morisawa 2017-04-23 16:40:49 +09:00
parent a3bd039bcf
commit 3df86fdab3

View file

@ -110,13 +110,9 @@ async function init(): Promise<Config> {
// Try to connect to MongoDB // Try to connect to MongoDB
let mongoDBLogger = new Logger('MongoDB'); let mongoDBLogger = new Logger('MongoDB');
try { const db = require('./db/mongodb').default;
const db = require('./db/mongodb').default; mongoDBLogger.info('Successfully connected');
mongoDBLogger.info('Successfully connected'); db.close();
db.close();
} catch (e) {
throw e;
}
return config; return config;
} }