From f54412af364ef36fc7d3d14868ed5ce97c3071d7 Mon Sep 17 00:00:00 2001 From: PJ Date: Wed, 17 Apr 2024 14:51:56 +0200 Subject: [PATCH] bus: remove unused pruning cooldown config --- bus/client/client_test.go | 1 - cmd/renterd/main.go | 1 - internal/node/node.go | 1 - internal/test/e2e/cluster.go | 1 - 4 files changed, 4 deletions(-) diff --git a/bus/client/client_test.go b/bus/client/client_test.go index 9cd1e80e7..795439669 100644 --- a/bus/client/client_test.go +++ b/bus/client/client_test.go @@ -80,7 +80,6 @@ func newTestClient(dir string) (*client.Client, func() error, func(context.Conte }, Miner: node.NewMiner(client), SlabPruningInterval: time.Minute, - SlabPruningCooldown: time.Minute, }, filepath.Join(dir, "bus"), types.GeneratePrivateKey(), zap.New(zapcore.NewNopCore())) if err != nil { return nil, nil, nil, err diff --git a/cmd/renterd/main.go b/cmd/renterd/main.go index 3005b4b34..c569b304b 100644 --- a/cmd/renterd/main.go +++ b/cmd/renterd/main.go @@ -436,7 +436,6 @@ func main() { Bus: cfg.Bus, Network: network, SlabPruningInterval: time.Hour, - SlabPruningCooldown: 30 * time.Second, } // Init db dialector if cfg.Database.MySQL.URI != "" { diff --git a/internal/node/node.go b/internal/node/node.go index d247f199a..293363653 100644 --- a/internal/node/node.go +++ b/internal/node/node.go @@ -45,7 +45,6 @@ type BusConfig struct { DBDialector gorm.Dialector DBMetricsDialector gorm.Dialector SlabPruningInterval time.Duration - SlabPruningCooldown time.Duration } type AutopilotConfig struct { diff --git a/internal/test/e2e/cluster.go b/internal/test/e2e/cluster.go index 1a8c016c6..b102b6148 100644 --- a/internal/test/e2e/cluster.go +++ b/internal/test/e2e/cluster.go @@ -896,7 +896,6 @@ func testBusCfg() node.BusConfig { }, Network: testNetwork(), SlabPruningInterval: time.Second, - SlabPruningCooldown: 10 * time.Millisecond, } }