diff options
| author | Arnaud Cogoluègnes <acogoluegnes@gmail.com> | 2016-11-29 10:25:32 +0100 |
|---|---|---|
| committer | Arnaud Cogoluègnes <acogoluegnes@gmail.com> | 2016-11-29 10:25:32 +0100 |
| commit | 39df722a3e471be3d40dc24cb391317f16e9d4a0 (patch) | |
| tree | a3d485065f11406ccbf8abce8cb1a74a1d461166 /test | |
| parent | b2141bde48add4f3281e5667c8d7835dbd62601a (diff) | |
| download | rabbitmq-server-git-39df722a3e471be3d40dc24cb391317f16e9d4a0.tar.gz | |
Add background GC settings to new config format
Fixes #1040
Diffstat (limited to 'test')
| -rw-r--r-- | test/config_schema_SUITE_data/snippets.config | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/config_schema_SUITE_data/snippets.config b/test/config_schema_SUITE_data/snippets.config index a64b6e06c9..f5832981bc 100644 --- a/test/config_schema_SUITE_data/snippets.config +++ b/test/config_schema_SUITE_data/snippets.config @@ -772,5 +772,19 @@ autocluster.node_type = ram", [{rabbit, [ {autocluster, [{peer_discovery_backend, rabbit_peer_discovery_classic_config}, {node_type, ram}]} +]}],[]}, +{77, +"background_gc_enabled = true +background_gc_target_interval = 30000", +[{rabbit, [ + {background_gc_enabled, true}, + {background_gc_target_interval, 30000} +]}],[]}, +{77.1, +"background_gc_enabled = false +background_gc_target_interval = 30000", +[{rabbit, [ + {background_gc_enabled, false}, + {background_gc_target_interval, 30000} ]}],[]} ]. |
