changed path dmpWorker.js -> dmpWorker.ts

Signed-off-by: Yannick Bungers <git@innay.de>
Signed-off-by: David Mehren <dmehren1@gmail.com>
This commit is contained in:
Yannick Bungers 2020-04-12 20:44:11 +02:00 committed by David Mehren
parent 8ed198ffcb
commit c4178e5d77
No known key found for this signature in database
GPG key ID: 6017AF117F9756CB
2 changed files with 2 additions and 18 deletions

View file

@ -24,7 +24,7 @@ class Data {
}
function createDmpWorker (): ChildProcess {
const worker = childProcess.fork(path.resolve(__dirname, '../workers/dmpWorker.js'), ['ignore'])
const worker = childProcess.fork(path.resolve(__dirname, '../workers/dmpWorker.ts'), ['ignore'])
logger.debug('dmp worker process started')
worker.on('message', function (data: Data) {
if (!data || !data.msg || !data.cacheKey) {