[
https://issues.apache.org/jira/browse/NIFI-5077?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16476064#comment-16476064
]
ASF GitHub Bot commented on NIFI-5077:
--------------------------------------
Github user pvillard31 commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2698#discussion_r188345339
--- Diff:
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ExtractGrok.java
---
@@ -234,6 +247,11 @@ public void onStopped() {
@OnScheduled
public void onScheduled(final ProcessContext context) throws
GrokException, IOException {
+
+ if (context.getProperty(KEEP_EMPTY_CAPTURES).isSet()) {
--- End diff --
with required=true, you would not need to check if the property is set
anymore
> Grok support for Empty Captures
> -------------------------------
>
> Key: NIFI-5077
> URL: https://issues.apache.org/jira/browse/NIFI-5077
> Project: Apache NiFi
> Issue Type: Bug
> Components: Core Framework
> Affects Versions: 1.6.0
> Environment: CentOS 7
> Reporter: Ramon de Graaff
> Assignee: Otto Fowler
> Priority: Major
> Attachments: grok.xml
>
> Original Estimate: 24h
> Remaining Estimate: 24h
>
> Pattern matches but also attaches null values.
> grok-pattern:
> {{TEST %\{A}|%\{B}}}
> {{A %\{INT:test}}}
> {{B %\{INT:test}}}
> {{INT (?:[+-]?(?:[0-9]+))}}
> flowfile-content:
> {{1}}
> Flow file attributes after match:
> {{grok.A}}
> {{1}}
> {{grok.TEST}}
> {{1}}
> {{grok.test}}
> {{[1, null]}}
>
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)