File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/test/java/com/rabbitmq Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ public static void initCrypto() throws Exception {
8989 assertNotNull (p12Path );
9090 String p12Passwd = System .getProperty ("test-client-cert.password" );
9191 assertNotNull (p12Passwd );
92+ System .out .println (p12Passwd );
9293 KeyStore ks = KeyStore .getInstance ("PKCS12" );
9394 char [] p12Password = p12Passwd .toCharArray ();
9495 ks .load (new FileInputStream (p12Path ), p12Password );
Original file line number Diff line number Diff line change @@ -132,12 +132,12 @@ public static Process invokeMakeTarget(String command) throws IOException {
132132 }
133133
134134 public static void startRabbitOnNode () throws IOException {
135- rabbitmqctl ("eval 'rabbit:start().' " );
135+ rabbitmqctl ("start_app " );
136136 tryConnectFor (10_000 );
137137 }
138138
139139 public static void stopRabbitOnNode () throws IOException {
140- rabbitmqctl ("eval 'rabbit:stop().' " );
140+ rabbitmqctl ("stop_app " );
141141 }
142142
143143 public static void tryConnectFor (int timeoutInMs ) throws IOException {
You can’t perform that action at this time.
0 commit comments