mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Remove unnecessary stacktrace and provide more meaningful message
This commit is contained in:
parent
644add4c22
commit
ac963ff83a
1 changed files with 1 additions and 1 deletions
|
|
@ -247,7 +247,7 @@ public abstract class AbstractTestRestApi {
|
|||
request = httpGet("/");
|
||||
isRunning = request.getStatusCode() == 200;
|
||||
} catch (IOException e) {
|
||||
LOG.error("Exception in AbstractTestRestApi while checkIfServerIsRunning ", e);
|
||||
LOG.error("AbstractTestRestApi.checkIfServerIsRunning() fails .. ZeppelinServer is not running");
|
||||
isRunning = false;
|
||||
} finally {
|
||||
if (request != null) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue