no message

This commit is contained in:
2024-04-26 22:21:56 +03:00
parent cf81637812
commit c84a648bb6
6 changed files with 18 additions and 10 deletions

View File

@@ -41,9 +41,11 @@ public abstract class RepositoryServerSSHPass extends ConnectionPass {
}
//--
protected void StartServer() throws Exception {
user.connection.startShellProcess(serverHome,Constants.STARTED, "java -jar " + getServerFileName());
user.connection.startShellProcess(serverHome,"server_out.txt", "java -jar " + getServerFileName());
//--
RemoteFile STARTED = new RemoteFile(serverHome, Constants.STARTED);
user.connection.waitForFileCreation(STARTED);
//---
RemoteFile StartLog = new RemoteFile(serverHome, Constants.STARTED +
"_by_" +
Current.getAccount().email +