summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2017-08-01 02:55:35 +0300
committerMichael Klishin <michael@clojurewerkz.org>2017-08-01 02:55:35 +0300
commita65b6d7e10e7880d909fff7214c39165f56d64c4 (patch)
treeeaa6bd05ba4ad8d5bfb2daa20df4794106d135d5
parent613b2a8846fd7b031823f325e01337766a9cbdd5 (diff)
downloadrabbitmq-server-git-a65b6d7e10e7880d909fff7214c39165f56d64c4.tar.gz
Restore delays used earlier
-rw-r--r--test/vhost_SUITE.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/vhost_SUITE.erl b/test/vhost_SUITE.erl
index 0418312afb..6ed84dcfe3 100644
--- a/test/vhost_SUITE.erl
+++ b/test/vhost_SUITE.erl
@@ -390,7 +390,7 @@ open_connections(Config, NodesAndVHosts) ->
(Node) ->
rabbit_ct_client_helpers:OpenConnectionFun(Config, Node)
end, NodesAndVHosts),
- timer:sleep(700),
+ timer:sleep(500),
Conns.
close_connections(Conns) ->
@@ -398,12 +398,12 @@ close_connections(Conns) ->
(Conn) ->
rabbit_ct_client_helpers:close_connection(Conn)
end, Conns),
- timer:sleep(700).
+ timer:sleep(500).
count_connections_in(Config, VHost) ->
count_connections_in(Config, VHost, 0).
count_connections_in(Config, VHost, NodeIndex) ->
- timer:sleep(300),
+ timer:sleep(200),
rabbit_ct_broker_helpers:rpc(Config, NodeIndex,
rabbit_connection_tracking,
count_connections_in, [VHost]).