-
Notifications
You must be signed in to change notification settings - Fork 44
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
Bug: the tracker checker result for UDP tracker shows "Announce" for the Scrape test. #1037
Labels
Milestone
Comments
josecelano
added
Bug
Incorrect Behavior
- Developer -
Torrust Improvement Experience
labels
Sep 11, 2024
josecelano
added a commit
to josecelano/torrust-tracker
that referenced
this issue
Sep 11, 2024
Fixed ouoput: ```output $ TORRUST_CHECKER_CONFIG='{ "udp_trackers": ["127.0.0.1:6969"], "http_trackers": [], "health_checks": [] }' cargo run --bin tracker_checker Compiling torrust-tracker v3.0.0-rc.1-develop (/home/josecelano/Documents/git/committer/me/github/torrust/torrust-tracker) Finished `dev` profile [optimized + debuginfo] target(s) in 15.42s Running `target/debug/tracker_checker` 2024-09-11T09:44:57.432395Z INFO torrust_tracker::console::clients::checker::service: Running checks for trackers ... [ { "Udp": { "Ok": { "remote_addr": "127.0.0.1:6969", "results": [ [ "Setup", { "Ok": null } ], [ "Connect", { "Ok": null } ], [ "Announce", { "Ok": null } ], [ "Scrape", { "Ok": null } ] ] } } } ] ```
josecelano
added a commit
that referenced
this issue
Sep 11, 2024
dbee825 fix: [#1037] wrong req type name in tracker checker outout (Jose Celano) Pull request description: Fix wrong req type name in tracker checker output. Command: ```console $ TORRUST_CHECKER_CONFIG='{ "udp_trackers": ["127.0.0.1:6969"], "http_trackers": [], "health_checks": [] }' cargo run --bin tracker_checker ``` ```output Compiling torrust-tracker v3.0.0-rc.1-develop (/home/josecelano/Documents/git/committer/me/github/torrust/torrust-tracker) Finished `dev` profile [optimized + debuginfo] target(s) in 15.42s Running `target/debug/tracker_checker` 2024-09-11T09:44:57.432395Z INFO torrust_tracker::console::clients::checker::service: Running checks for trackers ... ``` Fixed output: ```json [ { "Udp": { "Ok": { "remote_addr": "127.0.0.1:6969", "results": [ [ "Setup", { "Ok": null } ], [ "Connect", { "Ok": null } ], [ "Announce", { "Ok": null } ], [ "Scrape", { "Ok": null } ] ] } } } ] ``` The previous output was: ```json [ { "Udp": { "Ok": { "remote_addr": "127.0.0.1:6969", "results": [ [ "Setup", { "Ok": null } ], [ "Connect", { "Ok": null } ], [ "Announce", { "Ok": null } ], [ "Announce", { "Ok": null } ] ] } } } ] ``` ACKs for top commit: josecelano: ACK dbee825 Tree-SHA512: fc4d8f1317052e5d4061eb69b5104f281ee39d1a4381ad30c5ea7b7fa88618059d1533c40c1a9182a382a80f73bdea2841b357bbfc12fa18349181d3fd3ca0db
josecelano
added a commit
that referenced
this issue
Sep 23, 2024
beb56d3 release: version 3.0.0-rc.1 (Jose Celano) bdb0419 chore(deps): update dependencies (Jose Celano) faee02f feat: [#675] tracker checker (HTTP tracker) supports more service address formats (Jose Celano) 520026d feat: [#675] tracker checker supports more service address formats (Jose Celano) dbee825 fix: [#1037] wrong req type name in tracker checker outout (Jose Celano) c49438f fix: remove debugging print (Jose Celano) 084879e feat: [#569] numwant HTTP tracker announce param (Jose Celano) 481d413 feat: [#569] allow UDP clients to limit peers in response (Jose Celano) ff836ed fix: clippy error (Jose Celano) 1f64cc9 chore(deps): udpate dependencies (Jose Celano) b88cc61 develop: bump to version 3.0.0-rc.1-develop (Jose Celano) Pull request description: Release Version 3.0.0-rc.1 ACKs for top commit: josecelano: ACK beb56d3 Tree-SHA512: fb923cb93948123fe4af4f144aaedd72f33aabde1428aac5f14d15eec3b0779b0663c6b1e2580e32c920e343529d1bdbd472b4a1f58592126bb12188bfe4ae7a
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Relates to: #682
This is the output when the "scrape" requests timeout.
The text was updated successfully, but these errors were encountered: