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
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;
}