Remove unused code: ShamanGarbageCollect struct in config.go (#104407)

No functional changes.

Reviewed-on: https://projects.blender.org/studio/flamenco/pulls/104407
This commit is contained in:
Vivian Leung 2025-07-03 09:24:28 +02:00 committed by Sybren A. Stüvel
parent 4492d824cb
commit 1044350b4b

View File

@ -106,20 +106,6 @@ type Base struct {
MQTT MQTTConfig `yaml:"mqtt"`
}
// GarbageCollect contains the config options for the GC.
type ShamanGarbageCollect struct {
// How frequently garbage collection is performed on the file store:
Period Duration `yaml:"period"`
// How old files must be before they are GC'd:
MaxAge Duration `yaml:"maxAge"`
// Paths to check for symlinks before GC'ing files.
ExtraCheckoutDirs []string `yaml:"extraCheckoutPaths"`
// Used by the -gc CLI arg to silently disable the garbage collector
// while we're performing a manual sweep.
SilentlyDisable bool `yaml:"-"`
}
// MQTTConfig contains the configuration options for MQTT broker (idea for the future) and client.
type MQTTConfig struct {
Client eventbus.MQTTClientConfig `yaml:"client"`