Skip to content

Commit 3a16d4d

Browse files
committed
remove deprecated queue_explicit_gc_run_operation_threshold config
1 parent d0e8712 commit 3a16d4d

File tree

3 files changed

+0
-12
lines changed

3 files changed

+0
-12
lines changed

deps/rabbit/BUILD.bazel

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,6 @@ _APP_ENV = """[
116116
{cluster_nodes, {[], disc}},
117117
118118
{config_entry_decoder, [{passphrase, undefined}]},
119-
120-
%% rabbitmq-server#973
121-
{queue_explicit_gc_run_operation_threshold, 1000},
122119
{background_gc_enabled, false},
123120
{background_gc_target_interval, 60000},
124121
%% rabbitmq-server#589

deps/rabbit/Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,6 @@ define PROJECT_ENV
9999
{cluster_nodes, {[], disc}},
100100

101101
{config_entry_decoder, [{passphrase, undefined}]},
102-
103-
%% rabbitmq-server#973
104-
{queue_explicit_gc_run_operation_threshold, 1000},
105102
{background_gc_enabled, false},
106103
{background_gc_target_interval, 60000},
107104
%% rabbitmq-server#589

deps/rabbit/test/backing_queue_SUITE.erl

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -193,18 +193,12 @@ end_per_group1(_, Config) ->
193193

194194
init_per_testcase(Testcase, Config) when Testcase == variable_queue_requeue;
195195
Testcase == variable_queue_fold ->
196-
ok = rabbit_ct_broker_helpers:rpc(
197-
Config, 0, application, set_env,
198-
[rabbit, queue_explicit_gc_run_operation_threshold, 0]),
199196
rabbit_ct_helpers:testcase_started(Config, Testcase);
200197
init_per_testcase(Testcase, Config) ->
201198
rabbit_ct_helpers:testcase_started(Config, Testcase).
202199

203200
end_per_testcase(Testcase, Config) when Testcase == variable_queue_requeue;
204201
Testcase == variable_queue_fold ->
205-
ok = rabbit_ct_broker_helpers:rpc(
206-
Config, 0, application, set_env,
207-
[rabbit, queue_explicit_gc_run_operation_threshold, 1000]),
208202
rabbit_ct_helpers:testcase_finished(Config, Testcase);
209203
end_per_testcase(Testcase, Config) ->
210204
rabbit_ct_helpers:testcase_finished(Config, Testcase).

0 commit comments

Comments
 (0)