Skip to content

Commit 572deaa

Browse files
Artem LabazinArtem Labazin
authored andcommitted
Fix compilation error
1 parent 40495f5 commit 572deaa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

client/src/test/java/io/appulse/epmd/java/client/util/LocalEpmdHelper.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,11 @@ public static void kill () {
7878
val process = builder.start();
7979
if (!process.waitFor(1, MINUTES)) {
8080
process.destroy();
81-
throw new RuntimeException("Killing local EPMD is too long, pid: " + pid);
81+
throw new RuntimeException("Killing local EPMD is too long, pid: " + pids);
8282
}
8383
if (process.exitValue() != 0) {
8484
process.destroy();
85-
throw new RuntimeException("Couldn't kill local EPMD with PID " + pid);
85+
throw new RuntimeException("Couldn't kill local EPMD with PID " + pids);
8686
}
8787
}
8888

0 commit comments

Comments
 (0)