Add index name and uuid in IndexAlreadyExistsException default message

Relates #18274
This commit is contained in:
Olivier Bourgain 2016-05-12 20:32:30 +02:00 committed by Jason Tedor
parent ec4825d49e
commit df43230844
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ import java.io.IOException;
public class IndexAlreadyExistsException extends ElasticsearchException {
public IndexAlreadyExistsException(Index index) {
this(index, "already exists");
this(index, "index " + index.toString() + " already exists");
}
public IndexAlreadyExistsException(Index index, String message) {
@ -48,4 +48,4 @@ public class IndexAlreadyExistsException extends ElasticsearchException {
public RestStatus status() {
return RestStatus.BAD_REQUEST;
}
}
}