remove setMaxListener (not longer needed)
authorJakob <jakob-ingenfeld@gmx.de>
Thu, 21 Jan 2021 14:55:22 +0000 (15:55 +0100)
committerJakob <jakob-ingenfeld@gmx.de>
Thu, 21 Jan 2021 14:55:22 +0000 (15:55 +0100)
src/charging-station/StationWorker.ts
src/utils/Constants.ts

index a948a1b4bbb1bfc1572ffe3dbac8a47d6e6149bc..513265e2bb0679323adbbca9c2959c20d94b04be 100644 (file)
@@ -11,7 +11,6 @@ if (!isMainThread) {
 }
 
 function addListener() {
-  parentPort.setMaxListeners(Constants.MAX_LISTENERS);
   parentPort.on('message', (e) => {
     if (e.id === Constants.START_WORKER_ELEMENT) {
       startChargingStation(e.workerData);
index e6d103862c3f8182fc925b9deb931893043e501b..5fa60e9997a14bda7ae9f78bff845660f787f7ef 100644 (file)
@@ -35,8 +35,6 @@ export default class Constants {
 
   static readonly TRANSACTION_DEFAULT_TAGID = '00000000';
 
-  static readonly MAX_LISTENERS = 1000;
-
   static readonly START_WORKER_DELAY = 500;
   static readonly START_WORKER_ELEMENT = 'startWorkerElement';
 }