-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge #650: Udpate tracker configuration
940c246 fix: [#648] udpate tracker configuration (Jose Celano) Pull request description: New breaking changes have been applied to the Tracker configuration. - Renamed `log_level` to `threshold`. - Tracker mode split into `listed` and `private` flags. - Added configuration `version`. From: ```toml [logging] log_level = "info" [core] mode = "public" tracker_usage_statistics = true inactive_peer_cleanup_interval = 600 ``` To: ```toml version = "2" [logging] threshold = "info" [core] inactive_peer_cleanup_interval = 600 listed = false private = false tracker_usage_statistics = true ``` Top commit has no ACKs. Tree-SHA512: 1087d0abb8be8a9d36f66fc3e2b5d57136c49e589baae5018ead61041d6d6f7e15e76dfac2a911d54ff53ab72d25da1a75274f71a0842de97157e02f94b0899a
- Loading branch information
Showing
4 changed files
with
8 additions
and
11 deletions.
There are no files selected for viewing
4 changes: 3 additions & 1 deletion
4
share/default/config/tracker.private.e2e.container.sqlite3.toml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
version = "2" | ||
|
||
[core] | ||
mode = "private" | ||
private = true | ||
|
||
[core.database] | ||
driver = "Sqlite3" | ||
|
4 changes: 3 additions & 1 deletion
4
share/default/config/tracker.public.e2e.container.sqlite3.toml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
version = "2" | ||
|
||
[core] | ||
mode = "public" | ||
private = true | ||
|
||
[core.database] | ||
driver = "Sqlite3" | ||
|
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
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