Explorar el Código

cmd/syncthing: Report if weak hash is enabled

GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4490
AudriusButkevicius hace 8 años
padre
commit
c5f90d64bc
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      cmd/syncthing/usage_report.go

+ 2 - 0
cmd/syncthing/usage_report.go

@@ -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