修改UIServer

master
senjyure 8 months ago
parent efe7ec389b
commit 9ece140cdb
  1. 6
      src/main/java/com/bellmann/runner/InterfaceService.java

@ -22,9 +22,9 @@ public class InterfaceService extends ServiceManager {
}
@Override
public boolean init() {
CAP.trDebug("Start init service INTERFACE");
CAP.trDebug("Start init service UIServer");
if (!super.init()) {
CAP.trError("Failed to init QUERYService.");
CAP.trError("Failed to init UIServer.");
return false;
}
service = this;
@ -41,7 +41,7 @@ public class InterfaceService extends ServiceManager {
if(service != null){
return service;
}
String[] arg = new String[] { "-ServerName", "INTERFACE" };
String[] arg = new String[] { "-ServerName", "UIServer" };
service = new InterfaceService(arg);
return service;
}

Loading…
Cancel
Save