修改报错提示

This commit is contained in:
shiziyuan9527 2020-06-17 17:34:32 +08:00
parent a6ab2813ae
commit aacd8df1b9
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ public class DockerTestEngine extends AbstractEngine {
restTemplate.postForObject(uri, testRequest, String.class); restTemplate.postForObject(uri, testRequest, String.class);
} catch (Exception e) { } catch (Exception e) {
LogUtil.error(e); LogUtil.error(e);
MSException.throwException(Translator.get("load_test_kafka_invalid")); MSException.throwException(Translator.get("start_engine_fail"));
} }
} }