Skip to content

Commit

Permalink
fix: benchmarking config template
Browse files Browse the repository at this point in the history
- Missing [core.tracker_policy] section. Configuration was changed.
- Missing database config. Needed when the default DB folder does not
  exist. With this config storage folder is not needed. WE are not using
DB which required DB for benchmarking.
  • Loading branch information
josecelano committed Aug 8, 2024
1 parent 7ac1556 commit e563bfb
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions share/default/config/tracker.udp.benchmarking.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
[metadata]
app = "torrust-tracker"
purpose = "configuration"
schema_version = "2.0.0"

[logging]
Expand All @@ -9,8 +7,15 @@ threshold = "error"
[core]
listed = false
private = false
remove_peerless_torrents = false
tracker_usage_statistics = false

[core.database]
driver = "sqlite3"
path = "./sqlite3.db"

[core.tracker_policy]
persistent_torrent_completed_stat = false
remove_peerless_torrents = false

[[udp_trackers]]
bind_address = "0.0.0.0:6969"

0 comments on commit e563bfb

Please sign in to comment.