|
@@ -20,7 +20,7 @@ public class TestInvoker {
|
|
|
public BaseResponseDTO test(String exepath) throws InterruptedException {
|
|
|
String uuid = UUID.randomUUID().toString();
|
|
|
System.out.println(uuid);
|
|
|
- String cmd = "cmd /c " + exepath + " " + uuid + " " + CALLBACK;
|
|
|
+ String cmd = "cmd /c start " + exepath + " " + uuid + " " + CALLBACK;
|
|
|
String result = ExecUtils.exec(cmd);
|
|
|
System.out.println(result);
|
|
|
while (!ResultUtils.RESULT_MAP.containsKey(uuid)){
|