Skip to content
Snippets Groups Projects
Commit aada2d01 authored by Daniel Scholl's avatar Daniel Scholl
Browse files

Merge branch 'master' into fix-context-path-indexer

parents 465e3c88 d1100354
No related branches found
No related tags found
1 merge request!11Azure - (4/4) - Adding missing context path for indexer
Pipeline #3546 passed
......@@ -116,7 +116,9 @@ public class StorageIndexerPayloadMapper {
return PropertyUtils.getProperty(storageRecordData, propertyKey);
} catch (NestedNullException ignored) {
// property not found in record
} catch (IllegalArgumentException | IllegalAccessException | InvocationTargetException | NoSuchMethodException e) {
} 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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment