Fixes in reports. Reports seem to work now

This commit is contained in:
Tomas Bures 2018-12-21 19:09:18 +01:00
parent 0be4af5f6c
commit 5a16d789a0
30 changed files with 716 additions and 338 deletions

View file

@ -1,5 +1,6 @@
'use strict';
const config = require('config');
const knex = require('../lib/knex');
const path = require('path');
const log = require('../lib/log');
@ -402,6 +403,10 @@ process.on('message', msg => {
}
});
if (config.title) {
process.title = config.title + ': importer';
}
process.send({
type: 'importer-started'
});