-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor packages: clean announce
and scrape
handlers
#1339
Merged
josecelano
merged 11 commits into
torrust:develop
from
josecelano:1338-refactor-packages-clean-announce-and-scrape-handlers
Mar 3, 2025
Merged
Refactor packages: clean announce
and scrape
handlers
#1339
josecelano
merged 11 commits into
torrust:develop
from
josecelano:1338-refactor-packages-clean-announce-and-scrape-handlers
Mar 3, 2025
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```output error: unnecessary `Debug` formatting in `format!` args --> console/tracker-client/src/console/clients/checker/app.rs:117:103 | 117 | let file_content = std::fs::read_to_string(path).with_context(|| format!("can't read config file {path:?}"))?; | ^^^^ | = help: use `Display` formatting and change this to `path.display()` = note: switching to `Display` formatting will change how the value is shown; escaped characters will no longer be escaped and surrounding quotes will be removed = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_debug_formatting = note: `-D clippy::unnecessary-debug-formatting` implied by `-D clippy::pedantic` = help: to override `-D clippy::pedantic` add `#[allow(clippy::unnecessary_debug_formatting)]` Checking torrust-axum-http-tracker-server v3.0.0-develop (/home/josecelano/Documents/git/committer/me/github/torrust/torrust-tracker/packages/axum-http-tracker-server) error: could not compile `torrust-tracker-client` (lib) due to 1 previous error warning: build failed, waiting for other jobs to finish... error: could not compile `torrust-tracker-client` (lib test) due to 1 previous error ```
…::announce::AnnounceService
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #1339 +/- ##
===========================================
+ Coverage 81.51% 81.62% +0.10%
===========================================
Files 230 230
Lines 16275 16366 +91
Branches 16275 16366 +91
===========================================
+ Hits 13267 13358 +91
Misses 2770 2770
Partials 238 238 ☔ View full report in Codecov by Sentry. |
…pe::ScrapeService
…:scrape::ScrapeService
ACK f9a7bfd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Clean
announce
andscrape
handlers: