Skip to content
Snippets Groups Projects

add support for feature-collection indexing

Merged Neelesh Thakur requested to merge feature-collection into master
All threads resolved!
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -121,9 +121,9 @@ public class StorageIndexerPayloadMapper {
} catch (NestedNullException ignored) {
// property not found in record
} catch (NoSuchMethodException e) {
this.log.warning(String.format("record-id: %s | error fetching property: %s | error: %s", recordId, propertyKey, e.getMessage()));
} catch (IllegalArgumentException | IllegalAccessException | InvocationTargetException e) {
this.log.warning(String.format("record-id: %s | error fetching property: %s | error: %s", recordId, propertyKey, e.getMessage()), e);
}
return null;
}
Loading