We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c1a131 commit edf6301Copy full SHA for edf6301
server/src/main/java/org/elasticsearch/index/IndexNotFoundException.java
@@ -46,7 +46,7 @@ public IndexNotFoundException(Index index) {
46
}
47
48
public IndexNotFoundException(Index index, Throwable cause) {
49
- super("no such index " + index.toString(), cause);
+ super("no such index [" + index.getName() + "]", cause);
50
setIndex(index);
51
52
0 commit comments