Improve reporting of assert in IndexShard

This commit is contained in:
Simon Willnauer 2015-03-09 11:12:38 -07:00
parent 0fdc425591
commit 20f98fe34a
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ public class IndexShard extends AbstractIndexShardComponent {
this.codecService = codecService;
this.shardSuggestService = shardSuggestService;
this.shardBitsetFilterCache = shardBitsetFilterCache;
assert clusterService.lifecycleState() == Lifecycle.State.STARTED; // otherwise localNode is still none;
assert clusterService.lifecycleState() == Lifecycle.State.STARTED : "expected lifecycle to be started but was: " + clusterService.lifecycleState() ; // otherwise localNode is still none;
this.localNode = clusterService.localNode();
state = IndexShardState.CREATED;
this.refreshInterval = indexSettings.getAsTime(INDEX_REFRESH_INTERVAL, EngineConfig.DEFAULT_REFRESH_INTERVAL);