We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40495f5 commit 572deaaCopy full SHA for 572deaa
1 file changed
client/src/test/java/io/appulse/epmd/java/client/util/LocalEpmdHelper.java
@@ -78,11 +78,11 @@ public static void kill () {
78
val process = builder.start();
79
if (!process.waitFor(1, MINUTES)) {
80
process.destroy();
81
- throw new RuntimeException("Killing local EPMD is too long, pid: " + pid);
+ throw new RuntimeException("Killing local EPMD is too long, pid: " + pids);
82
}
83
if (process.exitValue() != 0) {
84
85
- throw new RuntimeException("Couldn't kill local EPMD with PID " + pid);
+ throw new RuntimeException("Couldn't kill local EPMD with PID " + pids);
86
87
88
0 commit comments