mirror of
https://github.com/gluster/glusterd2.git
synced 2026-02-06 15:46:00 +01:00
13 lines
457 B
Go
13 lines
457 B
Go
package bitrot
|
|
|
|
const (
|
|
// keyFeaturesBitrot is the key which enables/disables bitrot-stub
|
|
keyFeaturesBitrot = "features/bit-rot"
|
|
// keyFeaturesScrub is the key which controls bit-rot.so to be scrubber/bitd
|
|
keyFeaturesScrub = "bit-rot.scrubber"
|
|
// keyScrubFrequency is the key for scrubber frequency
|
|
keyScrubFrequency = "bit-rot.scrub-freq"
|
|
// keyScrubThrottle is the key for controls scrubber throttle
|
|
keyScrubThrottle = "bit-rot.scrub-throttle"
|
|
)
|