Merge branch 'master' of github.com:metersphere/metersphere
This commit is contained in:
commit
82b004df60
|
@ -103,12 +103,18 @@ public class DockerTestEngine extends AbstractEngine {
|
||||||
startTestRequest.setEnv(env);
|
startTestRequest.setEnv(env);
|
||||||
|
|
||||||
String uri = String.format(BASE_URL + "/jmeter/container/start", nodeIp, port);
|
String uri = String.format(BASE_URL + "/jmeter/container/start", nodeIp, port);
|
||||||
ResultHolder result = restTemplate.postForObject(uri, startTestRequest, ResultHolder.class);
|
try {
|
||||||
if (result == null) {
|
ResultHolder result = restTemplate.postForObject(uri, startTestRequest, ResultHolder.class);
|
||||||
MSException.throwException(Translator.get("start_engine_fail"));
|
if (result == null) {
|
||||||
}
|
MSException.throwException(Translator.get("start_engine_fail"));
|
||||||
if (!result.isSuccess()) {
|
}
|
||||||
MSException.throwException(result.getMessage());
|
if (!result.isSuccess()) {
|
||||||
|
MSException.throwException(result.getMessage());
|
||||||
|
}
|
||||||
|
} catch (MSException e) {
|
||||||
|
throw e;
|
||||||
|
} catch (Exception e) {
|
||||||
|
MSException.throwException("Please check node-controller status.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue