Skip to content

Commit

Permalink
refactor(core): Remove unused code from Server.ts (no-changelog) (#8426)
Browse files Browse the repository at this point in the history
  • Loading branch information
netroy authored Jan 24, 2024
1 parent e9fea16 commit 1affebd
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions packages/cli/src/Server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,9 @@ import { ExternalSecretsController } from '@/ExternalSecrets/ExternalSecrets.con
import { ExecutionsController } from '@/executions/executions.controller';
import { isApiEnabled, loadPublicApiVersions } from '@/PublicApi';
import type { ICredentialsOverwrite, IDiagnosticInfo } from '@/Interfaces';
import { ActiveExecutions } from '@/ActiveExecutions';
import { CredentialsOverwrites } from '@/CredentialsOverwrites';
import { LoadNodesAndCredentials } from '@/LoadNodesAndCredentials';
import * as ResponseHelper from '@/ResponseHelper';
import { WaitTracker } from '@/WaitTracker';
import { toHttpNodeParameters } from '@/CurlConverterHelper';
import { EventBusController } from '@/eventbus/eventBus.controller';
import { EventBusControllerEE } from '@/eventbus/eventBus.controller.ee';
Expand Down Expand Up @@ -101,10 +99,6 @@ const exec = promisify(callbackExec);
export class Server extends AbstractServer {
private endpointPresetCredentials: string;

private waitTracker: WaitTracker;

private activeExecutionsInstance: ActiveExecutions;

private presetCredentialsLoaded: boolean;

private loadNodesAndCredentials: LoadNodesAndCredentials;
Expand All @@ -130,9 +124,6 @@ export class Server extends AbstractServer {
this.frontendService = Container.get(require('@/services/frontend.service').FrontendService);
}

this.activeExecutionsInstance = Container.get(ActiveExecutions);
this.waitTracker = Container.get(WaitTracker);

this.presetCredentialsLoaded = false;
this.endpointPresetCredentials = config.getEnv('credentials.overwrite.endpoint');

Expand Down

0 comments on commit 1affebd

Please sign in to comment.