Skip to content

Commit

Permalink
Merge #228: Enable Axum HTTP tracker
Browse files Browse the repository at this point in the history
4355c2a feat: [#227] enable Axum HTTP tracker (Jose Celano)

Pull request description:

  Make the Axum HTTP tracker the implementations used in production code.

Top commit has no ACKs.

Tree-SHA512: 5e59f71c6dc9b30bb8b9643682ae91060b65705edf2ec70fdaa4a121a430ed0c322b5b33971e29c40a4e76fb86907efc6b7b008830250870811f986eadeeb68c
  • Loading branch information
josecelano committed Mar 10, 2023
2 parents 2255c75 + 4355c2a commit 9b2269b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ pub async fn setup(config: &Configuration, tracker: Arc<tracker::Tracker>) -> Ve
if !http_tracker_config.enabled {
continue;
}
jobs.push(http_tracker::start_job(http_tracker_config, tracker.clone(), Version::Warp).await);
jobs.push(http_tracker::start_job(http_tracker_config, tracker.clone(), Version::Axum).await);
}

// Start HTTP API
Expand Down

0 comments on commit 9b2269b

Please sign in to comment.