Fixed a typo in an error message "should exists" -> "should exist"
This commit is contained in:
parent
9442c41481
commit
7961dfa7ab
|
@ -111,7 +111,7 @@ public class LocalIndexShardGateway extends AbstractIndexShardComponent implemen
|
|||
// ignore
|
||||
}
|
||||
if (indexShouldExists && indexShard.store().indexStore().persistent()) {
|
||||
throw new IndexShardGatewayRecoveryException(shardId(), "shard allocated for local recovery (post api), should exists, but doesn't, current files: " + files, e);
|
||||
throw new IndexShardGatewayRecoveryException(shardId(), "shard allocated for local recovery (post api), should exist, but doesn't, current files: " + files, e);
|
||||
}
|
||||
}
|
||||
if (si != null) {
|
||||
|
|
Loading…
Reference in New Issue