diff options
| author | Michael Klishin <michael@clojurewerkz.org> | 2017-10-21 23:48:08 +0300 |
|---|---|---|
| committer | Michael Klishin <michael@clojurewerkz.org> | 2017-10-22 05:12:09 +0300 |
| commit | 4c5ebd99fc3cae32e71d06a761518fe0e221a536 (patch) | |
| tree | e81a8807d10506f4638da0129be7c5e56b96e15e /test | |
| parent | 08700282b7176d62cb262a66eceb576610d66c4d (diff) | |
| download | rabbitmq-server-git-4c5ebd99fc3cae32e71d06a761518fe0e221a536.tar.gz | |
Support rabbit.connection_max in Cuttlefish schema
Diffstat (limited to 'test')
| -rw-r--r-- | test/config_schema_SUITE_data/rabbit.snippets | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/config_schema_SUITE_data/rabbit.snippets b/test/config_schema_SUITE_data/rabbit.snippets index 233eb8a55b..f978ee0b41 100644 --- a/test/config_schema_SUITE_data/rabbit.snippets +++ b/test/config_schema_SUITE_data/rabbit.snippets @@ -151,6 +151,18 @@ tcp_listen_options.exit_on_close = false", [{rabbit, [{vm_memory_calculation_strategy, legacy}]}], []}, + {connection_max, + "connection_max = 999", + [{rabbit,[{connection_max, 999}]}], + []}, + {connection_max, + "connection_max = infinity", + [{rabbit,[{connection_max, infinity}]}], + []}, + {channel_max, + "channel_max = 16", + [{rabbit,[{channel_max, 16}]}], + []}, {listeners_tcp_ip, "listeners.tcp.1 = 192.168.1.99:5672", [{rabbit,[{tcp_listeners,[{"192.168.1.99",5672}]}]}], |
