Skip to content

Commit c727c88

Browse files
michaelklishinmergify[bot]
authored andcommitted
More renaming #14087, add new test suite to a parallel CT group
(cherry picked from commit 5f1ab14) (cherry picked from commit 7810b4e)
1 parent a8541cf commit c727c88

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

deps/rabbit/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,11 +261,11 @@ endef
261261
PARALLEL_CT_SET_1_A = unit_rabbit_ssl unit_cluster_formation_locking_mocks unit_cluster_formation_sort_nodes unit_collections unit_config_value_encryption unit_connection_tracking
262262
PARALLEL_CT_SET_1_B = amqp_address amqp_auth amqp_credit_api_v2 amqp_filtex amqp_dotnet amqp_jms signal_handling single_active_consumer unit_access_control_authn_authz_context_propagation unit_access_control_credential_validation unit_amqp091_content_framing unit_amqp091_server_properties unit_app_management
263263
PARALLEL_CT_SET_1_C = amqp_proxy_protocol amqpl_consumer_ack amqpl_direct_reply_to backing_queue bindings rabbit_db_maintenance rabbit_db_msup rabbit_db_policy rabbit_db_queue rabbit_db_topic_exchange rabbit_direct_reply_to_prop cluster_limit cluster_minority term_to_binary_compat_prop topic_permission transactions unicode unit_access_control
264-
PARALLEL_CT_SET_1_D = amqqueue_backward_compatibility channel_interceptor channel_operation_timeout classic_queue classic_queue_prop config_schema peer_discovery_dns peer_discovery_tmp_hidden_node per_node_limit per_user_connection_channel_limit
264+
PARALLEL_CT_SET_1_D = amqqueue_backward_compatibility channel_interceptor channel_operation_timeout classic_queue classic_queue_prop config_schema peer_discovery_dns peer_discovery_tmp_hidden_node per_node_limit per_user_connection_channel_limit prevent_startup_if_node_was_reset
265265

266266
PARALLEL_CT_SET_2_A = cluster confirms_rejects consumer_timeout rabbit_access_control rabbit_confirms rabbit_core_metrics_gc rabbit_cuttlefish rabbit_db_binding rabbit_db_exchange
267267
PARALLEL_CT_SET_2_B = clustering_recovery crashing_queues deprecated_features direct_exchange_routing_v2 disconnect_detected_during_alarm exchanges unit_gen_server2
268-
PARALLEL_CT_SET_2_C = disk_monitor dynamic_qq unit_disk_monitor unit_file_handle_cache unit_log_management unit_operator_policy node_initial_run
268+
PARALLEL_CT_SET_2_C = disk_monitor dynamic_qq unit_disk_monitor unit_file_handle_cache unit_log_management unit_operator_policy prevent_startup_if_node_was_reset
269269
PARALLEL_CT_SET_2_D = queue_length_limits queue_parallel quorum_queue_member_reconciliation rabbit_fifo rabbit_fifo_dlx rabbit_stream_coordinator
270270

271271
PARALLEL_CT_SET_3_A = definition_import per_user_connection_channel_limit_partitions per_vhost_connection_limit_partitions policy priority_queue_recovery rabbit_fifo_v0 rabbit_stream_sac_coordinator_v4 rabbit_stream_sac_coordinator unit_credit_flow unit_queue_consumers unit_queue_location unit_quorum_queue

deps/rabbit/src/rabbit.erl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,16 +199,16 @@
199199
{requires, [core_initialized]},
200200
{enables, routing_ready}]}).
201201

202-
-rabbit_boot_step({initial_run_check,
203-
[{description, "check if this is the first time the node starts"},
202+
-rabbit_boot_step({prevent_startup_if_node_was_reset,
203+
[{description, "prevents node boot if a previous startup marker exists but the database is not seeded (requires opt-in configuration in rabbitmq.conf)"},
204204
{mfa, {?MODULE, prevent_startup_if_node_was_reset, []}},
205205
{requires, recovery},
206206
{enables, empty_db_check}]}).
207207

208208
-rabbit_boot_step({empty_db_check,
209209
[{description, "empty DB check"},
210210
{mfa, {?MODULE, maybe_insert_default_data, []}},
211-
{requires, initial_run_check},
211+
{requires, prevent_startup_if_node_was_reset},
212212
{enables, routing_ready}]}).
213213

214214

deps/rabbit/test/node_initial_run_SUITE.erl renamed to deps/rabbit/test/prevent_startup_if_node_was_reset_SUITE.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
%% This feature helps detect potential data loss scenarios by maintaining
1010
%% a marker file to track if a node has been initialized before.
1111

12-
-module(node_initial_run_SUITE).
12+
-module(prevent_startup_if_node_was_reset_SUITE).
1313

1414
-include_lib("common_test/include/ct.hrl").
1515
-include_lib("eunit/include/eunit.hrl").

0 commit comments

Comments
 (0)