From b56cbc5daadf5e8ada3e1211e8b80209570c8c87 Mon Sep 17 00:00:00 2001 From: hveldstra Date: Fri, 30 Aug 2024 09:57:26 +0100 Subject: [PATCH] refactor: remove unused code --- packages/artillery/lib/launch-platform.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/artillery/lib/launch-platform.js b/packages/artillery/lib/launch-platform.js index 5308af0cfc..9b881a4c5f 100644 --- a/packages/artillery/lib/launch-platform.js +++ b/packages/artillery/lib/launch-platform.js @@ -8,7 +8,6 @@ const { loadPlugins, loadPluginsConfig } = require('./load-plugins'); const EventEmitter = require('eventemitter3'); const debug = require('debug')('core'); -const os = require('os'); const p = require('util').promisify; const _ = require('lodash'); @@ -41,7 +40,6 @@ class Launcher { this.workerMessageBuffer = []; this.metricsByPeriod = {}; // individual intermediates by worker - this.mergedPeriodMetrics = []; // merged intermediates for a period this.finalReportsByWorker = {}; this.events = new EventEmitter();