Repository: nifi Updated Branches: refs/heads/master 671445f10 -> 4d4f74cf0
NIFI-889: Return the failure relationshp in the set of allowed relationships Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/4d4f74cf Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/4d4f74cf Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/4d4f74cf Branch: refs/heads/master Commit: 4d4f74cf054d1072d9057cabd5a4231b045fafd5 Parents: 671445f Author: Mark Payne <[email protected]> Authored: Sat Aug 22 20:47:45 2015 -0400 Committer: Mark Payne <[email protected]> Committed: Sat Aug 22 20:47:45 2015 -0400 ---------------------------------------------------------------------- .../main/java/org/apache/nifi/processors/standard/ExecuteSQL.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/4d4f74cf/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ExecuteSQL.java ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ExecuteSQL.java b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ExecuteSQL.java index bee1d39..f3be494 100644 --- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ExecuteSQL.java +++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ExecuteSQL.java @@ -94,6 +94,7 @@ public class ExecuteSQL extends AbstractProcessor { public ExecuteSQL() { final Set<Relationship> r = new HashSet<>(); r.add(REL_SUCCESS); + r.add(REL_FAILURE); relationships = Collections.unmodifiableSet(r); final List<PropertyDescriptor> pds = new ArrayList<>();
