You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by ij...@apache.org on 2018/12/12 02:16:09 UTC

nifi git commit: NIFI-5889 - changed the wording about Destination URL in S2S RTs

Repository: nifi
Updated Branches:
  refs/heads/master 13a7f1686 -> 85cc5aa9e


NIFI-5889 - changed the wording about Destination URL in S2S RTs

This closes #3215.

Signed-off-by: Koji Kawamura <ij...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/85cc5aa9
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/85cc5aa9
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/85cc5aa9

Branch: refs/heads/master
Commit: 85cc5aa9eb99fce8268a476fa8a645184478be1d
Parents: 13a7f16
Author: Pierre Villard <pi...@gmail.com>
Authored: Tue Dec 11 17:36:45 2018 +0100
Committer: Koji Kawamura <ij...@apache.org>
Committed: Wed Dec 12 11:15:48 2018 +0900

----------------------------------------------------------------------
 .../apache/nifi/reporting/AbstractSiteToSiteReportingTask.java  | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/85cc5aa9/nifi-nar-bundles/nifi-site-to-site-reporting-bundle/nifi-site-to-site-reporting-task/src/main/java/org/apache/nifi/reporting/AbstractSiteToSiteReportingTask.java
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-site-to-site-reporting-bundle/nifi-site-to-site-reporting-task/src/main/java/org/apache/nifi/reporting/AbstractSiteToSiteReportingTask.java b/nifi-nar-bundles/nifi-site-to-site-reporting-bundle/nifi-site-to-site-reporting-task/src/main/java/org/apache/nifi/reporting/AbstractSiteToSiteReportingTask.java
index 21bb397..8fdf483 100644
--- a/nifi-nar-bundles/nifi-site-to-site-reporting-bundle/nifi-site-to-site-reporting-task/src/main/java/org/apache/nifi/reporting/AbstractSiteToSiteReportingTask.java
+++ b/nifi-nar-bundles/nifi-site-to-site-reporting-bundle/nifi-site-to-site-reporting-task/src/main/java/org/apache/nifi/reporting/AbstractSiteToSiteReportingTask.java
@@ -95,8 +95,9 @@ public abstract class AbstractSiteToSiteReportingTask extends AbstractReportingT
     static final PropertyDescriptor DESTINATION_URL = new PropertyDescriptor.Builder()
             .name("Destination URL")
             .displayName("Destination URL")
-            .description("The URL of the destination NiFi instance to send data to, " +
-                    "should be a comma-separated list of address in the format of http(s)://host:port/nifi.")
+            .description("The URL of the destination NiFi instance or, if clustered, a comma-separated list of address in the format "
+                    + "of http(s)://host:port/nifi. This destination URL will only be used to initiate the Site-to-Site connection. The "
+                    + "data sent by this reporting task will be load-balanced on all the nodes of the destination (if clustered).")
             .required(true)
             .expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
             .addValidator(new NiFiUrlValidator())