[PR #37] [MERGED] Improve stalled and failed imports #292

Closed
opened 2025-10-09 17:00:48 -05:00 by giteasync · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Cleanuparr/Cleanuparr/pull/37
Author: @Flaminel
Created: 1/10/2025
Status: Merged
Merged: 1/13/2025
Merged by: @Flaminel

Base: mainHead: improve_stalled_and_import_failed


📝 Commits (10+)

  • 4ff7b94 added options to ignore private downloads when cleaning the queue
  • 80e7435 updated issue templates
  • c223605 fixed getting torrent private status for qbittorrent
  • 6b1d0ff added early return
  • bbbe014 updated test data
  • 714720d added option to ignore failed import messages
  • 7052fda updated test data
  • 67a1add updated README
  • 80f27a1 fixed examples
  • b1ce666 updated README

📊 Changes

20 files changed (+204 additions, -38 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/1-bug.yml (+2 -1)
📝 .github/ISSUE_TEMPLATE/2-feature.yml (+1 -1)
📝 .github/ISSUE_TEMPLATE/3-help.yml (+1 -1)
📝 README.md (+14 -2)
📝 code/Common/Configuration/QueueCleaner/QueueCleanerConfig.cs (+9 -0)
📝 code/Domain/Models/Arr/Queue/QueueRecord.cs (+3 -2)
code/Domain/Models/Arr/Queue/TrackedDownloadStatusMessage.cs (+8 -0)
📝 code/Domain/Models/Deluge/Response/TorrentStatus.cs (+6 -4)
📝 code/Executable/appsettings.Development.json (+6 -1)
📝 code/Executable/appsettings.json (+4 -1)
📝 code/Infrastructure/Verticals/Arr/ArrClient.cs (+43 -2)
📝 code/Infrastructure/Verticals/DownloadClient/Deluge/DelugeService.cs (+20 -4)
📝 code/Infrastructure/Verticals/DownloadClient/DownloadServiceBase.cs (+1 -1)
📝 code/Infrastructure/Verticals/DownloadClient/DummyDownloadService.cs (+1 -1)
📝 code/Infrastructure/Verticals/DownloadClient/IDownloadService.cs (+1 -1)
📝 code/Infrastructure/Verticals/DownloadClient/QBittorrent/QBitService.cs (+36 -7)
code/Infrastructure/Verticals/DownloadClient/RemoveResult.cs (+14 -0)
📝 code/Infrastructure/Verticals/DownloadClient/Transmission/TransmissionService.cs (+22 -5)
📝 code/Infrastructure/Verticals/QueueCleaner/QueueCleaner.cs (+9 -4)
📝 code/test/docker-compose.yml (+3 -0)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Cleanuparr/Cleanuparr/pull/37 **Author:** [@Flaminel](https://github.com/Flaminel) **Created:** 1/10/2025 **Status:** ✅ Merged **Merged:** 1/13/2025 **Merged by:** [@Flaminel](https://github.com/Flaminel) **Base:** `main` ← **Head:** `improve_stalled_and_import_failed` --- ### 📝 Commits (10+) - [`4ff7b94`](https://github.com/Cleanuparr/Cleanuparr/commit/4ff7b9450f36a77cc7e5612fa72f85bf30f78539) added options to ignore private downloads when cleaning the queue - [`80e7435`](https://github.com/Cleanuparr/Cleanuparr/commit/80e743505c37546928480c0527798038a4a82c1e) updated issue templates - [`c223605`](https://github.com/Cleanuparr/Cleanuparr/commit/c22360512d01c35103a9ec93b368f74fe29a1898) fixed getting torrent private status for qbittorrent - [`6b1d0ff`](https://github.com/Cleanuparr/Cleanuparr/commit/6b1d0ff4691aeda8369f63bf762c03046e53d45f) added early return - [`bbbe014`](https://github.com/Cleanuparr/Cleanuparr/commit/bbbe014e262afc8501019dbfe7c4a6329a49644b) updated test data - [`714720d`](https://github.com/Cleanuparr/Cleanuparr/commit/714720d88331e37948890709c871f2402e1894ae) added option to ignore failed import messages - [`7052fda`](https://github.com/Cleanuparr/Cleanuparr/commit/7052fdab55af756a71a2f3fc65414496df39886c) updated test data - [`67a1add`](https://github.com/Cleanuparr/Cleanuparr/commit/67a1add2c4559f68893ec6f9b4eef14c7429867b) updated README - [`80f27a1`](https://github.com/Cleanuparr/Cleanuparr/commit/80f27a19cdbc1c4982309793146d735f9f35eab4) fixed examples - [`b1ce666`](https://github.com/Cleanuparr/Cleanuparr/commit/b1ce6664588fdfc29d922136ea9e9e368cce0203) updated README ### 📊 Changes **20 files changed** (+204 additions, -38 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/1-bug.yml` (+2 -1) 📝 `.github/ISSUE_TEMPLATE/2-feature.yml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/3-help.yml` (+1 -1) 📝 `README.md` (+14 -2) 📝 `code/Common/Configuration/QueueCleaner/QueueCleanerConfig.cs` (+9 -0) 📝 `code/Domain/Models/Arr/Queue/QueueRecord.cs` (+3 -2) ➕ `code/Domain/Models/Arr/Queue/TrackedDownloadStatusMessage.cs` (+8 -0) 📝 `code/Domain/Models/Deluge/Response/TorrentStatus.cs` (+6 -4) 📝 `code/Executable/appsettings.Development.json` (+6 -1) 📝 `code/Executable/appsettings.json` (+4 -1) 📝 `code/Infrastructure/Verticals/Arr/ArrClient.cs` (+43 -2) 📝 `code/Infrastructure/Verticals/DownloadClient/Deluge/DelugeService.cs` (+20 -4) 📝 `code/Infrastructure/Verticals/DownloadClient/DownloadServiceBase.cs` (+1 -1) 📝 `code/Infrastructure/Verticals/DownloadClient/DummyDownloadService.cs` (+1 -1) 📝 `code/Infrastructure/Verticals/DownloadClient/IDownloadService.cs` (+1 -1) 📝 `code/Infrastructure/Verticals/DownloadClient/QBittorrent/QBitService.cs` (+36 -7) ➕ `code/Infrastructure/Verticals/DownloadClient/RemoveResult.cs` (+14 -0) 📝 `code/Infrastructure/Verticals/DownloadClient/Transmission/TransmissionService.cs` (+22 -5) 📝 `code/Infrastructure/Verticals/QueueCleaner/QueueCleaner.cs` (+9 -4) 📝 `code/test/docker-compose.yml` (+3 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
giteasync added the
pull-request
label 2025-10-09 17:00:48 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/Cleanuparr-Cleanuparr#292
No description provided.