Skip to content

Commit

Permalink
doc: [torrust#276] add comment for upload torrent secondary tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
josecelano committed Sep 20, 2023
1 parent f19e801 commit 275231a
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/services/torrent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,13 +148,16 @@ impl Index {

// Synchronous secondary tasks

// code-review: consider moving this to a background task
self.import_torrent_statistics_from_tracker(torrent_id, &torrent.canonical_info_hash())
.await;

// Secondary task: whitelist torrent on the tracker

// We always whitelist the torrent on the tracker because even if the tracker mode is `public`
// it could be changed to `private` later on.
// We always whitelist the torrent on the tracker because
// even if the tracker mode is `public` it could be changed to `private`
// later on.
//
// code-review: maybe we should consider adding a new feature to
// whitelist all torrents from the admin panel if that change happens.
if let Err(e) = self
.tracker_service
.whitelist_info_hash(torrent.canonical_info_hash_hex())
Expand Down

0 comments on commit 275231a

Please sign in to comment.