diff options
| author | Michael Klishin <michael@novemberain.com> | 2017-07-08 01:49:28 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-08 01:49:28 +0300 |
| commit | 99b3b0a290dc32c29887ea6b7ed880ce68bfd4e4 (patch) | |
| tree | 6992af3d5a3cee85a5cd38e5d7e302baee146f5c /Makefile | |
| parent | 5fa999bbf6e319fa250007fe3b5f5c09c3d70691 (diff) | |
| parent | aa1496bb198900355291617038d40592998c4a1c (diff) | |
| download | rabbitmq-server-git-99b3b0a290dc32c29887ea6b7ed880ce68bfd4e4.tar.gz | |
Merge pull request #1283 from rabbitmq/rabbitmq-server-1280
Handle concurrent vhost creation and deletion better
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -112,17 +112,19 @@ define PROJECT_ENV {passphrase, undefined} ]}, - %% rabbitmq-server-973 + %% rabbitmq-server#973 {queue_explicit_gc_run_operation_threshold, 1000}, {lazy_queue_explicit_gc_run_operation_threshold, 1000}, {background_gc_enabled, false}, {background_gc_target_interval, 60000}, - %% rabbitmq-server-589 + %% rabbitmq-server#589 {proxy_protocol, false}, {disk_monitor_failure_retries, 10}, {disk_monitor_failure_retry_interval, 120000}, - %% either "stop_node" or "ignore" - {vhost_restart_strategy, stop_node} + %% either "stop_node" or "continue". + %% by default we choose to not terminate the entire node if one + %% vhost had to shut down, see server#1158 and server#1280 + {vhost_restart_strategy, continue} ] endef |
