double check that there are mappings before trying to call the post process method
This commit is contained in:
parent
32127c4d73
commit
79ebcc31c5
|
@ -521,9 +521,11 @@ public class XContentDocumentMapper implements DocumentMapper, ToXContent {
|
||||||
@Override public void processDocumentAfterIndex(Document doc) {
|
@Override public void processDocumentAfterIndex(Document doc) {
|
||||||
for (Fieldable field : doc.getFields()) {
|
for (Fieldable field : doc.getFields()) {
|
||||||
FieldMappers fieldMappers = mappers().indexName(field.name());
|
FieldMappers fieldMappers = mappers().indexName(field.name());
|
||||||
FieldMapper mapper = fieldMappers.mapper();
|
if (fieldMappers != null) {
|
||||||
if (mapper != null) {
|
FieldMapper mapper = fieldMappers.mapper();
|
||||||
mapper.processFieldAfterIndex(field);
|
if (mapper != null) {
|
||||||
|
mapper.processFieldAfterIndex(field);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue