diff options
author | Matthew Sackman <matthew@rabbitmq.com> | 2011-05-19 13:32:09 +0100 |
---|---|---|
committer | Matthew Sackman <matthew@rabbitmq.com> | 2011-05-19 13:32:09 +0100 |
commit | 2d318b334722df94ef5b18811c37200e724ea63c (patch) | |
tree | b2f386877fc380e70f10fc16a6e6159e11a7119c /src/rabbit_tests.erl | |
parent | e73056d450d37065004deb1e7a0eaca1b0973ad1 (diff) | |
download | rabbitmq-server-2d318b334722df94ef5b18811c37200e724ea63c.tar.gz |
BQ:idle_timeout => BQ:timeoutbug24117
Diffstat (limited to 'src/rabbit_tests.erl')
-rw-r--r-- | src/rabbit_tests.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_tests.erl b/src/rabbit_tests.erl index 5137cce1..1a37cdff 100644 --- a/src/rabbit_tests.erl +++ b/src/rabbit_tests.erl @@ -2272,7 +2272,7 @@ variable_queue_wait_for_shuffling_end(VQ) -> case rabbit_variable_queue:needs_timeout(VQ) of false -> VQ; _ -> variable_queue_wait_for_shuffling_end( - rabbit_variable_queue:idle_timeout(VQ)) + rabbit_variable_queue:timeout(VQ)) end. test_variable_queue_all_the_bits_not_covered_elsewhere1(VQ0) -> @@ -2300,7 +2300,7 @@ test_variable_queue_all_the_bits_not_covered_elsewhere2(VQ0) -> {VQ3, AckTags} = variable_queue_fetch(2, false, false, 4, VQ2), {_Guids, VQ4} = rabbit_variable_queue:requeue(AckTags, fun(X) -> X end, VQ3), - VQ5 = rabbit_variable_queue:idle_timeout(VQ4), + VQ5 = rabbit_variable_queue:timeout(VQ4), _VQ6 = rabbit_variable_queue:terminate(VQ5), VQ7 = variable_queue_init(test_amqqueue(true), true), {empty, VQ8} = rabbit_variable_queue:fetch(false, VQ7), |