Skip to content

Commit

Permalink
Keep error message consistent
Browse files Browse the repository at this point in the history
Signed-off-by: Sicheng Song <sicheng.song@outlook.com>
  • Loading branch information
b4sjoo committed Sep 9, 2023
1 parent a73d4ac commit 596bb7c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public void initMLIndexIfAbsent(MLIndex index, ActionListener<Boolean> listener)
internalListener.onFailure(exception);
}));
} else {
internalListener.onFailure(new MLException("Failed to update index " + indexName));
internalListener.onFailure(new MLException("Failed to update index: " + indexName));
}
}, exception -> {
log.error("Failed to update index " + indexName, exception);
Expand Down

0 comments on commit 596bb7c

Please sign in to comment.