Fix typo in UnavailableShardsException message

Closes #10140
This commit is contained in:
Michael McCandless 2015-03-18 12:41:13 -04:00 committed by mikemccand
parent fdfdf594f9
commit a85b13773f
1 changed files with 1 additions and 1 deletions

View File

@ -386,7 +386,7 @@ public abstract class TransportShardReplicationOperationAction<Request extends S
}
if (!shard.active() || !observer.observedState().nodes().nodeExists(shard.currentNodeId())) {
logger.trace("primary shard [{}] is not yet active or we do not know the node it is assigned to [{}], scheduling a retry.", shard.shardId(), shard.currentNodeId());
retryBecauseUnavailable(shardIt.shardId(), "Primary shard is not active or isn't assigned is a known node.");
retryBecauseUnavailable(shardIt.shardId(), "Primary shard is not active or isn't assigned to a known node.");
return;
}