diff options
| author | Matthew Sackman <matthew@rabbitmq.com> | 2010-07-07 14:22:17 +0100 |
|---|---|---|
| committer | Matthew Sackman <matthew@rabbitmq.com> | 2010-07-07 14:22:17 +0100 |
| commit | 975c06c95d13d4426d063d59cd266739cc9e2d60 (patch) | |
| tree | d99bed87ca373ed15037f1b97e90b44c1ba2565e | |
| parent | 6978ff64d9d952603f5ac3859d65a332eaa4a876 (diff) | |
| download | rabbitmq-server-git-975c06c95d13d4426d063d59cd266739cc9e2d60.tar.gz | |
Bump the msg_store file size limit when testing from 128bytes to 512bytes (normal operational limit is 16MB). This ensures that the GC code is hit
| -rw-r--r-- | src/rabbit_tests.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_tests.erl b/src/rabbit_tests.erl index b28dd839e5..2dd2974a1c 100644 --- a/src/rabbit_tests.erl +++ b/src/rabbit_tests.erl @@ -1346,7 +1346,7 @@ test_backing_queue() -> {ok, rabbit_variable_queue} -> {ok, FileSizeLimit} = application:get_env(rabbit, msg_store_file_size_limit), - application:set_env(rabbit, msg_store_file_size_limit, 128, + application:set_env(rabbit, msg_store_file_size_limit, 512, infinity), {ok, MaxJournal} = application:get_env(rabbit, queue_index_max_journal_entries), |
