cmd/syncthing: Report if weak hash is enabled

GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4490
This commit is contained in:
AudriusButkevicius 2017-11-06 15:04:59 +00:00 committed by Audrius Butkevicius
parent 941c9f1531
commit c5f90d64bc
1 changed files with 2 additions and 0 deletions

View File

@ -26,6 +26,7 @@ import (
"github.com/syncthing/syncthing/lib/protocol"
"github.com/syncthing/syncthing/lib/scanner"
"github.com/syncthing/syncthing/lib/upgrade"
"github.com/syncthing/syncthing/lib/weakhash"
)
// Current version number of the usage report, for acceptance purposes. If
@ -190,6 +191,7 @@ func reportData(cfg configIntf, m modelIntf, connectionsService connectionsIntf,
res["progressEmitterEnabled"] = opts.ProgressUpdateIntervalS > -1
res["customDefaultFolderPath"] = opts.DefaultFolderPath != "~"
res["weakHashSelection"] = opts.WeakHashSelectionMethod.String()
res["weakHashEnabled"] = weakhash.Enabled
res["customTrafficClass"] = opts.TrafficClass != 0
res["customTempIndexMinBlocks"] = opts.TempIndexMinBlocks != 10
res["temporariesDisabled"] = opts.KeepTemporariesH == 0