You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by al...@apache.org on 2016/11/30 01:31:00 UTC

nifi git commit: NIFI-3112 Revert "NIFI-2199 - allows nifi.sh restart through ssh"

Repository: nifi
Updated Branches:
  refs/heads/master 9d6ca6e1e -> e3c761134


NIFI-3112 Revert "NIFI-2199 - allows nifi.sh restart through ssh"

This reverts commit 88d125137e3bf3faf80b522edf5cf14f99419d60.

This closes #1282.

Signed-off-by: Andy LoPresto <al...@apache.org>


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

Branch: refs/heads/master
Commit: e3c7611347a57df1e50ce495efb4fc5d777ba4f6
Parents: 9d6ca6e
Author: jpercivall <JP...@apache.org>
Authored: Tue Nov 29 18:42:17 2016 -0500
Committer: Andy LoPresto <al...@apache.org>
Committed: Tue Nov 29 17:32:47 2016 -0800

----------------------------------------------------------------------
 .../nifi-framework/nifi-resources/src/main/resources/bin/nifi.sh   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/e3c76113/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-resources/src/main/resources/bin/nifi.sh
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-resources/src/main/resources/bin/nifi.sh b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-resources/src/main/resources/bin/nifi.sh
index e224579..fcfb572 100755
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-resources/src/main/resources/bin/nifi.sh
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-resources/src/main/resources/bin/nifi.sh
@@ -291,7 +291,7 @@ run() {
     RUN_NIFI_CMD="cd "\""${NIFI_HOME}"\"" && ${sudo_cmd_prefix} "\""${JAVA}"\"" -cp "\""${BOOTSTRAP_CLASSPATH}"\"" -Xms12m -Xmx24m ${BOOTSTRAP_DIR_PARAMS}  org.apache.nifi.bootstrap.RunNiFi"
 
     if [ "$1" = "start" ]; then
-        (eval $RUN_NIFI_CMD $@ &)> /dev/null 2>&1 < /dev/null
+        (eval $RUN_NIFI_CMD $@ &)
     else
         (eval $RUN_NIFI_CMD $@)
     fi