diff --git a/sdks/typescript/runner/src/mod.ts b/sdks/typescript/runner/src/mod.ts index 5f9b25968d..ee7c12d9ba 100644 --- a/sdks/typescript/runner/src/mod.ts +++ b/sdks/typescript/runner/src/mod.ts @@ -398,17 +398,6 @@ export class Runner { return `${wsEndpoint}?protocol_version=${PROTOCOL_VERSION}&namespace=${encodeURIComponent(this.#config.namespace)}&runner_key=${encodeURIComponent(this.#config.runnerKey)}`; } - get pegboardTunnelUrl() { - const endpoint = - this.#config.pegboardRelayEndpoint || - this.#config.pegboardEndpoint || - this.#config.endpoint; - const wsEndpoint = endpoint - .replace("http://", "ws://") - .replace("https://", "wss://"); - return `${wsEndpoint}?protocol_version=${PROTOCOL_VERSION}&namespace=${encodeURIComponent(this.#config.namespace)}&runner_name=${encodeURIComponent(this.#config.runnerName)}&runner_key=${encodeURIComponent(this.#config.runnerKey)}`; - } - // MARK: Runner protocol async #openPegboardWebSocket() { const protocols = ["rivet", `rivet_target.runner`];