Skip to content

Commit b81e0f9

Browse files
committed
Remove deprecated cluster_formation configuration
Since we bumped the minimum supported RabbitMQ version to v3.9.0 in #1110, we can delete the deprecated `cluster_formation.randomized_startup_delay_range` configurations. See rabbitmq/rabbitmq-server#3075. Prior to this commit, the RabbitMQ logs contained the following warning: ``` 2022-08-15 08:18:03.870480+00:00 [warn] <0.130.0> cluster_formation.randomized_startup_delay_range.min and cluster_formation.randomized_startup_delay_range.max are deprecated ```
1 parent d2d1763 commit b81e0f9

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

internal/resource/configmap.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ cluster_formation.k8s.host = kubernetes.default
3232
cluster_formation.k8s.address_type = hostname
3333
cluster_partition_handling = pause_minority
3434
queue_master_locator = min-masters
35-
disk_free_limit.absolute = 2GB
36-
cluster_formation.randomized_startup_delay_range.min = 0
37-
cluster_formation.randomized_startup_delay_range.max = 60`
35+
disk_free_limit.absolute = 2GB`
3836

3937
defaultTLSConf = `
4038
ssl_options.certfile = /etc/rabbitmq-tls/tls.crt

internal/resource/configmap_test.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ cluster_formation.k8s.address_type = hostname
3333
cluster_partition_handling = pause_minority
3434
queue_master_locator = min-masters
3535
disk_free_limit.absolute = 2GB
36-
cluster_formation.randomized_startup_delay_range.min = 0
37-
cluster_formation.randomized_startup_delay_range.max = 60
3836
cluster_name = ` + instanceName)
3937
}
4038

0 commit comments

Comments
 (0)