You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by jp...@apache.org on 2016/10/20 19:31:05 UTC

[3/3] nifi-minifi git commit: MINIFI-39 Responding to review comments

MINIFI-39 Responding to review comments

This closes #46


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

Branch: refs/heads/master
Commit: 4e1363a2eb6f8c9e54db4c5844ce68fb2105c35a
Parents: 8d8c263
Author: Joseph Percivall <jo...@yahoo.com>
Authored: Thu Oct 20 14:26:27 2016 -0400
Committer: Joseph Percivall <jo...@yahoo.com>
Committed: Thu Oct 20 15:26:00 2016 -0400

----------------------------------------------------------------------
 .../nifi/minifi/bootstrap/status/PeriodicStatusReporter.java     | 2 +-
 minifi-docs/src/main/markdown/System_Admin_Guide.md              | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi-minifi/blob/4e1363a2/minifi-bootstrap/src/main/java/org/apache/nifi/minifi/bootstrap/status/PeriodicStatusReporter.java
----------------------------------------------------------------------
diff --git a/minifi-bootstrap/src/main/java/org/apache/nifi/minifi/bootstrap/status/PeriodicStatusReporter.java b/minifi-bootstrap/src/main/java/org/apache/nifi/minifi/bootstrap/status/PeriodicStatusReporter.java
index 8f0059c..916c903 100644
--- a/minifi-bootstrap/src/main/java/org/apache/nifi/minifi/bootstrap/status/PeriodicStatusReporter.java
+++ b/minifi-bootstrap/src/main/java/org/apache/nifi/minifi/bootstrap/status/PeriodicStatusReporter.java
@@ -46,7 +46,7 @@ public abstract class PeriodicStatusReporter {
      */
     public void start() {
         if (reportRunner == null){
-            throw new IllegalStateException("Programmatic error, the reportRunner has is still NULL when 'start' was called.");
+            throw new IllegalStateException("Programmatic error, the reportRunner is still NULL when 'start' was called.");
         }
         scheduledExecutorService.scheduleAtFixedRate(reportRunner, period, period, TimeUnit.MILLISECONDS);
     }

http://git-wip-us.apache.org/repos/asf/nifi-minifi/blob/4e1363a2/minifi-docs/src/main/markdown/System_Admin_Guide.md
----------------------------------------------------------------------
diff --git a/minifi-docs/src/main/markdown/System_Admin_Guide.md b/minifi-docs/src/main/markdown/System_Admin_Guide.md
index e5c97b9..14ce249 100644
--- a/minifi-docs/src/main/markdown/System_Admin_Guide.md
+++ b/minifi-docs/src/main/markdown/System_Admin_Guide.md
@@ -19,11 +19,11 @@
 
 [Apache NiFi Team](dev@nifi.apache.org>)
 
-[NiFi Homepage](http://nifi.apache.org)
+[MiNiFi Homepage](https://nifi.apache.org/minifi/index.html)
 
 # Status Reporting and Querying
 
-You can use FlowStatus to view status, processor bulletin, and health information similar to that displayed in the NiFi UI. Query FlowStatus either using the MiNiFi.sh script or by configuring one of the Periodic Status Reporters. The API for the query is the same for the reporters and the flowStatus script option. The API is outlined in the "FlowStatus Query Options" section below.
+In NiFi there is a lot of information, such as stats and bulletins, that is only available to view through the UI. MiNiFi provides access to this information through a query mechanism. You can query FlowStatus either using the MiNiFi.sh script or by configuring one of the Periodic Status Reporters. The API for the query is the same for the reporters and the "flowStatus" script option. The API is outlined in the "FlowStatus Query Options" section below.
 
 ## FlowStatus Script Query