-
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
Config overhaul: split tracker mode #934
Merged
josecelano
merged 7 commits into
torrust:develop
from
josecelano:932-config-overhaul-split-tracker-mode
Jul 1, 2024
Merged
Config overhaul: split tracker mode #934
josecelano
merged 7 commits into
torrust:develop
from
josecelano:932-config-overhaul-split-tracker-mode
Jul 1, 2024
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
When you format a toml file with a linter it sorts the keys alphabetically. It's good to have the same order in the code. It's also a common practice for JSON. This helps to make serialization deterministic.
josecelano
force-pushed
the
932-config-overhaul-split-tracker-mode
branch
from
July 1, 2024 10:30
09731e5
to
195d87e
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #934 +/- ##
===========================================
+ Coverage 77.29% 77.47% +0.18%
===========================================
Files 183 183
Lines 9689 9666 -23
===========================================
Hits 7489 7489
+ Misses 2200 2177 -23 ☔ View full report in Codecov by Sentry. |
…and `listed` flags From: ```toml [core] mode = "public" tracker_usage_statistics = true inactive_peer_cleanup_interval = 600 ``` To: ```toml [core] inactive_peer_cleanup_interval = 600 listed = false private = false tracker_usage_statistics = true ```
josecelano
force-pushed
the
932-config-overhaul-split-tracker-mode
branch
from
July 1, 2024 11:26
195d87e
to
ca31c83
Compare
josecelano
force-pushed
the
932-config-overhaul-split-tracker-mode
branch
from
July 1, 2024 12:06
b5d9ad8
to
f61c7c3
Compare
It was accidentaly added.
ACK b6b841d |
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.
Replace
mode
core config option withprivate
andlisted
flags:From:
To: