Skip to content

Commit bd5f4e8

Browse files
committed
Merge #1001: fix: benchmarking config template
e563bfb fix: benchmarking config template (Jose Celano) Pull request description: Fix benchmarking config template: - Missing [core.tracker_policy] section. The configuration was changed. - Missing database config. Needed when the default DB folder does not exist. With this config, a storage folder is not needed. We are not using DB, which requires DB for benchmarking. ACKs for top commit: josecelano: ACK e563bfb Tree-SHA512: ca8e73e4416fd0f4af74f6b8c10987d8ed4d5b19b73dad1273af98c97796f93027b34e98827b6d65f9a6c9e171ce64c8b63ae70245c3a2b9535eddf5be3a2cbc
2 parents 7ac1556 + e563bfb commit bd5f4e8

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
[metadata]
2-
app = "torrust-tracker"
3-
purpose = "configuration"
42
schema_version = "2.0.0"
53

64
[logging]
@@ -9,8 +7,15 @@ threshold = "error"
97
[core]
108
listed = false
119
private = false
12-
remove_peerless_torrents = false
1310
tracker_usage_statistics = false
1411

12+
[core.database]
13+
driver = "sqlite3"
14+
path = "./sqlite3.db"
15+
16+
[core.tracker_policy]
17+
persistent_torrent_completed_stat = false
18+
remove_peerless_torrents = false
19+
1520
[[udp_trackers]]
1621
bind_address = "0.0.0.0:6969"

0 commit comments

Comments
 (0)