Skip to content

Commit a2f6b57

Browse files
committed
Fix rabbitmqctl command
1 parent b84fc52 commit a2f6b57

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/java/com/rabbitmq/stream/Host.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,7 @@ public static void setEnv(String parameter, String value) throws IOException {
193193
}
194194

195195
public static String rabbitmqctlCommand() {
196-
String rabbitmqCtl = "/home/acogoluegnes/prog/rabbitmq/rabbitmq-server/sbin/rabbitmqctl";
197-
// String rabbitmqCtl = System.getProperty("rabbitmqctl.bin");
196+
String rabbitmqCtl = System.getProperty("rabbitmqctl.bin");
198197
if (rabbitmqCtl == null) {
199198
throw new IllegalStateException("Please define the rabbitmqctl.bin system property");
200199
}

0 commit comments

Comments
 (0)