no message
This commit is contained in:
@@ -33,7 +33,7 @@ public class MachineProcess extends DBObject {
|
||||
userName = p.user_name;
|
||||
userPassword = p.user_password;
|
||||
userWorkspace = p.user_workspace;
|
||||
testingSystemRoot = Global.Home;
|
||||
testingSystemRoot = CommonUtils.Home;
|
||||
serverName = Global.testingServer.name;
|
||||
id = Utils.getDateName(machineAddress + "_" + machinePort + "_" + userName);
|
||||
}
|
||||
@@ -86,7 +86,7 @@ public class MachineProcess extends DBObject {
|
||||
InetAddress localAddress = InetAddress.getByName(Global.properties.ServerAddress);
|
||||
local = localAddress.getHostAddress().equals(address.getHostAddress());
|
||||
} catch (Exception ex) {
|
||||
Global.Log.PrintException(ex);
|
||||
CommonUtils.MainLog.PrintException(ex);
|
||||
}
|
||||
return local;
|
||||
}
|
||||
@@ -96,7 +96,7 @@ public class MachineProcess extends DBObject {
|
||||
File workspace = getWorkspace();
|
||||
Utils.CheckAndCleanDirectory(workspace);
|
||||
//копирование визуализатора
|
||||
File src = new File(Global.Home, "TestingSystem.jar");
|
||||
File src = new File(CommonUtils.Home, "TestingSystem.jar");
|
||||
File supervisor = new File(workspace, "VisualSapfor.jar");
|
||||
FileUtils.copyFile(src, supervisor);
|
||||
//создание настроек
|
||||
|
||||
Reference in New Issue
Block a user