Fixed a typo in an error message "should exists" -> "should exist"

This commit is contained in:
Clinton Gormley 2013-03-11 15:37:20 +01:00
parent 9442c41481
commit 7961dfa7ab
1 changed files with 1 additions and 1 deletions

View File

@ -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) {