-
Type:
Bug
-
Status: Resolved
-
Priority:
Critical
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.0.0, 0.7.0, 1.0.0-Beta
-
Component/s: None
-
Labels:None
A null attribute value (as you would see for a removed attribute) causes the provenance repo to thrown an NPE here:
(as "entry.getValue()" is null...)
suggested fix is to change:
if (entry.getValue().length() > maxAttributeChars) {
to:
if (entry.getValue() != null && entry.getValue().length() > maxAttributeChars) {
- is related to
-
NIFI-2015 Corrupted flow file leads to a wedged flow
-
- Resolved
-
- links to