fix skipped variable setting

This commit is contained in:
Ivannikov Kirill 2015-09-02 18:02:26 +05:00
parent a097375a6f
commit 32b304b43c
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ public class ShardIndexingService extends AbstractIndexShardComponent {
totalStats.indexCurrent.inc();
typeStats(index.type()).indexCurrent.inc();
for (IndexingOperationListener listener : listeners) {
listener.preIndex(index);
index = listener.preIndex(index);
}
return index;
}