You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by ma...@apache.org on 2021/12/02 20:25:35 UTC

[nifi] branch main updated: NIFI-9432 - fix typo in diagnostic output (#5562)

This is an automated email from the ASF dual-hosted git repository.

markap14 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new fede6b9  NIFI-9432 - fix typo in diagnostic output (#5562)
fede6b9 is described below

commit fede6b9354b7f125b908e6d9c84c47a774752008
Author: Pierre Villard <pi...@gmail.com>
AuthorDate: Fri Dec 3 00:25:23 2021 +0400

    NIFI-9432 - fix typo in diagnostic output (#5562)
---
 .../diagnostics/bootstrap/tasks/FlowConfigurationDiagnosticTask.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/diagnostics/bootstrap/tasks/FlowConfigurationDiagnosticTask.java b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/diagnostics/bootstrap/tasks/FlowConfigurationDiagnosticTask.java
index b30f6ec..d88bc5c 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/diagnostics/bootstrap/tasks/FlowConfigurationDiagnosticTask.java
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/diagnostics/bootstrap/tasks/FlowConfigurationDiagnosticTask.java
@@ -52,7 +52,7 @@ public class FlowConfigurationDiagnosticTask implements DiagnosticTask {
         details.add("Local Input Ports: " + counts.getLocalInputPortCount());
         details.add("Local Output Ports: " + counts.getLocalOutputPortCount());
         details.add("Site-to-Site Input Ports: " + counts.getPublicInputPortCount());
-        details.add("Site-to-Site Input Ports: " + counts.getPublicOutputPortCount());
+        details.add("Site-to-Site Output Ports: " + counts.getPublicOutputPortCount());
         details.add("Active RPG Ports: " + counts.getActiveRemotePortCount());
         details.add("Inactive RPG Ports: " + counts.getInactiveRemotePortCount());
         details.add("");