Compare commits

...

1 Commits

Author SHA1 Message Date
idk
18db2e0fbc backport ShellService fix 2021-12-03 22:58:04 -05:00

View File

@ -253,7 +253,7 @@ public class ShellService implements ClientApp {
buf.write((byte) result); buf.write((byte) result);
} }
String pidString = buf.toString("UTF-8").replaceAll("[\\r\\n\\t ]", ""); String pidString = buf.toString("UTF-8").replaceAll("[\\r\\n\\t ]", "");
long pid = _pid; long pid = Long.parseLong(pidString);
if (_log.shouldLog(Log.DEBUG)) if (_log.shouldLog(Log.DEBUG))
_log.debug("Found " + getName() + "process with PID: " + pid); _log.debug("Found " + getName() + "process with PID: " + pid);
return pid; return pid;