Skip to content

Commit

Permalink
Add a rabbit.license_line default
Browse files Browse the repository at this point in the history
so that products that build on top could adjust
what's printed in the standard banner.

References #12390

(cherry picked from commit 1f98ab6)
  • Loading branch information
michaelklishin authored and mergify[bot] committed Oct 2, 2024
1 parent 9d315b3 commit 9c6db87
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
7 changes: 2 additions & 5 deletions deps/rabbit/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -132,13 +132,10 @@ _APP_ENV = """[
{credentials_obfuscation_fallback_secret, <<"nocookie">>},
{dead_letter_worker_consumer_prefetch, 32},
{dead_letter_worker_publisher_confirm_timeout, 180000},
%% EOL date for the current release series, if known/announced
{release_series_eol_date, none},
{vhost_process_reconciliation_run_interval, 30},
%% for testing
{vhost_process_reconciliation_enabled, true}
{vhost_process_reconciliation_enabled, true},
{license_line, "Licensed under the MPL 2.0. Website: https://rabbitmq.com"}
]
"""

Expand Down
5 changes: 2 additions & 3 deletions deps/rabbit/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,10 @@ define PROJECT_ENV
{credentials_obfuscation_fallback_secret, <<"nocookie">>},
{dead_letter_worker_consumer_prefetch, 32},
{dead_letter_worker_publisher_confirm_timeout, 180000},
%% EOL date for the current release series, if known/announced
{release_series_eol_date, none},
{vhost_process_reconciliation_run_interval, 30},
%% for testing
{vhost_process_reconciliation_enabled, true}
{vhost_process_reconciliation_enabled, true},
{license_line, "Licensed under the MPL 2.0. Website: https://rabbitmq.com"}
]
endef

Expand Down

0 comments on commit 9c6db87

Please sign in to comment.