Skip to content

Commit

Permalink
fix: undo accidentally committed stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
jkoenig134 committed Feb 6, 2024
1 parent e82957a commit 57d1223
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ import nconf from "nconf";
import { ConnectorRuntime } from "./ConnectorRuntime";
import { ConnectorRuntimeConfig } from "./ConnectorRuntimeConfig";

// import http from "http";
// import https from "https";

export function createConnectorConfig(overrides?: RuntimeConfig): ConnectorRuntimeConfig {
nconf
.overrides(overrides)
Expand Down Expand Up @@ -72,12 +69,6 @@ function parseString(value: string) {
}

async function run() {
// console.log(http.globalAgent.maxSockets);
// http.globalAgent.maxSockets = 10000;

// console.log(https.globalAgent.maxSockets);
// https.globalAgent.maxSockets = 10000;

const config = createConnectorConfig();
const runtime = await ConnectorRuntime.create(config);
await runtime.start();
Expand Down

0 comments on commit 57d1223

Please sign in to comment.