From 038aade2673e73321dc5bb246f489b9e0034cf64 Mon Sep 17 00:00:00 2001 From: David Ludwig Date: Sun, 2 May 2021 22:14:22 -0500 Subject: [PATCH] Remove test IPC request from seeker --- .../src/services/TorrentManager/TorrentClientIpc.ts | 8 -------- .../seeker/src/services/TorrentManager/TorrentManager.ts | 3 --- 2 files changed, 11 deletions(-) diff --git a/services/seeker/src/services/TorrentManager/TorrentClientIpc.ts b/services/seeker/src/services/TorrentManager/TorrentClientIpc.ts index bd096ba..5b41b3e 100644 --- a/services/seeker/src/services/TorrentManager/TorrentClientIpc.ts +++ b/services/seeker/src/services/TorrentManager/TorrentClientIpc.ts @@ -91,14 +91,6 @@ export default abstract class TorrentClientIpc extends IpcClientServiceresponse.data; - } - /** * Add a torrent to the client * @param torrent Magnet URI or file buffer diff --git a/services/seeker/src/services/TorrentManager/TorrentManager.ts b/services/seeker/src/services/TorrentManager/TorrentManager.ts index f3c07a6..617e872 100644 --- a/services/seeker/src/services/TorrentManager/TorrentManager.ts +++ b/services/seeker/src/services/TorrentManager/TorrentManager.ts @@ -1,6 +1,5 @@ import diskusage from "diskusage"; import { readdir } from "fs/promises"; -import Application from "../../Application" import { MovieTicket, MovieTorrent } from "@autoplex/database"; import Supervisor from "../Supervisor"; import TorrentClientIpc, { TorrentClientConnectionError } from "./TorrentClientIpc" @@ -49,8 +48,6 @@ export default class TorrentManager extends TorrentClientIpc this.log("Booting the torrent manager"); await super.boot(); await this.loadDisks(); - console.log("Sending test request...") - console.log("Response is:", await this.test("test value")); } // Interface methods ---------------------------------------------------------------------------