Небольшая оптимизация

This commit is contained in:
Book Pauk
2019-03-08 20:50:30 +07:00
parent 05128b12a8
commit 89d9a90901
2 changed files with 11 additions and 4 deletions

View File

@@ -14,7 +14,7 @@ class ConnManager {
async init(config) {
this.config = config;
const force = (config.branch == 'development' ? 'last' : null);
const force = null;//(config.branch == 'development' ? 'last' : null);
for (const poolConfig of this.config.db) {
const dbFileName = this.config.dataDir + '/' + poolConfig.fileName;