Skip to content

Commit 686b28f

Browse files
michaelklishinmergify[bot]
authored andcommitted
Add a rabbit.license_line default
so that products that build on top could adjust what's printed in the standard banner. References #12390 (cherry picked from commit 1f98ab6) (cherry picked from commit 9c6db87)
1 parent 92e9359 commit 686b28f

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

deps/rabbit/BUILD.bazel

+2-5
Original file line numberDiff line numberDiff line change
@@ -142,13 +142,10 @@ _APP_ENV = """[
142142
{credentials_obfuscation_fallback_secret, <<"nocookie">>},
143143
{dead_letter_worker_consumer_prefetch, 32},
144144
{dead_letter_worker_publisher_confirm_timeout, 180000},
145-
146-
%% EOL date for the current release series, if known/announced
147-
{release_series_eol_date, none},
148-
149145
{vhost_process_reconciliation_run_interval, 30},
150146
%% for testing
151-
{vhost_process_reconciliation_enabled, true}
147+
{vhost_process_reconciliation_enabled, true},
148+
{license_line, "Licensed under the MPL 2.0. Website: https://rabbitmq.com"}
152149
]
153150
"""
154151

deps/rabbit/Makefile

+2-3
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,10 @@ define PROJECT_ENV
125125
{credentials_obfuscation_fallback_secret, <<"nocookie">>},
126126
{dead_letter_worker_consumer_prefetch, 32},
127127
{dead_letter_worker_publisher_confirm_timeout, 180000},
128-
%% EOL date for the current release series, if known/announced
129-
{release_series_eol_date, none},
130128
{vhost_process_reconciliation_run_interval, 30},
131129
%% for testing
132-
{vhost_process_reconciliation_enabled, true}
130+
{vhost_process_reconciliation_enabled, true},
131+
{license_line, "Licensed under the MPL 2.0. Website: https://rabbitmq.com"}
133132
]
134133
endef
135134

0 commit comments

Comments
 (0)