We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 161577d commit 1350d78Copy full SHA for 1350d78
src/test/java/com/rabbitmq/tools/Host.java
@@ -133,7 +133,7 @@ public static Process invokeMakeTarget(String command) throws IOException {
133
134
public static void startRabbitOnNode() throws IOException {
135
rabbitmqctl("start_app");
136
- tryConnectFor(10 * 000);
+ tryConnectFor(10 * 1000);
137
}
138
139
public static void stopRabbitOnNode() throws IOException {
@@ -154,6 +154,7 @@ public static void tryConnectFor(int timeoutInMs) throws IOException {
154
Connection c = null;
155
try {
156
c = connectionFactory.newConnection();
157
+ return;
158
} catch (Exception e) {
159
// retrying
160
} finally {
0 commit comments