Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Improve log message when we cannot get anomaly result #58

Merged
merged 1 commit into from
Mar 10, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,7 @@ private void handleThresholdResult() {
} else if (failure.get() != null) {
listener.onFailure(failure.get());
} else {
listener.onFailure(new InternalFailure(adID, "Unexpected exception"));
listener.onFailure(new InternalFailure(adID, "Node connection problem or unexpected exception"));
}
} catch (Exception ex) {
handleExecuteException(ex, listener, adID);
Expand Down