feat: increasing healthcheck duration

This commit is contained in:
Chubby Granny Chaser 2024-06-27 18:52:53 +01:00
parent 7cd121cb80
commit a0cc15b5d8
No known key found for this signature in database

View file

@ -45,7 +45,7 @@ export class TorrentDownloader {
throw new Error("Failed to connect to libtorrent client"); throw new Error("Failed to connect to libtorrent client");
} }
await sleep(200); await sleep(1000);
return this.healthCheck(retries - 1); return this.healthCheck(retries - 1);
} }