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 {
89
89
assertNotNull (p12Path );
90
90
String p12Passwd = System .getProperty ("test-client-cert.password" );
91
91
assertNotNull (p12Passwd );
92
+ System .out .println (p12Passwd );
92
93
KeyStore ks = KeyStore .getInstance ("PKCS12" );
93
94
char [] p12Password = p12Passwd .toCharArray ();
94
95
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 {
132
132
}
133
133
134
134
public static void startRabbitOnNode () throws IOException {
135
- rabbitmqctl ("eval 'rabbit:start().' " );
135
+ rabbitmqctl ("start_app " );
136
136
tryConnectFor (10_000 );
137
137
}
138
138
139
139
public static void stopRabbitOnNode () throws IOException {
140
- rabbitmqctl ("eval 'rabbit:stop().' " );
140
+ rabbitmqctl ("stop_app " );
141
141
}
142
142
143
143
public static void tryConnectFor (int timeoutInMs ) throws IOException {
You can’t perform that action at this time.
0 commit comments