mirror of https://github.com/apache/nifi.git
NIFI-3283 Fixing typo in UpdateAttribute error message
This closes #1396.
This commit is contained in:
parent
7c95634203
commit
ac42178e9b
|
@ -283,7 +283,7 @@ public class UpdateAttribute extends AbstractProcessor implements Searchable {
|
|||
String initValue = context.getProperty(STATEFUL_VARIABLES_INIT_VALUE).getValue();
|
||||
if (initValue == null){
|
||||
reasons.add(new ValidationResult.Builder().subject(STATEFUL_VARIABLES_INIT_VALUE.getDisplayName()).valid(false)
|
||||
.explanation("initial state value much be set if the processor is configured to store state.").build());
|
||||
.explanation("initial state value must be set if the processor is configured to store state.").build());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue