You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apex.apache.org by ch...@apache.org on 2015/09/10 00:12:43 UTC

[12/50] incubator-apex-core git commit: SPOI-5821 #resolve Removed misleading warning from CLI since now it's possible for users to use it without installing the distro

SPOI-5821 #resolve Removed misleading warning from CLI since now it's possible for users to use it without installing the distro


Project: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/commit/453e8207
Tree: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/tree/453e8207
Diff: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/diff/453e8207

Branch: refs/heads/master
Commit: 453e820724a2111c880a3ed5d410b8af7d7cf51c
Parents: 19d6658
Author: David Yan <da...@datatorrent.com>
Authored: Thu Aug 6 13:56:57 2015 -0700
Committer: David Yan <da...@datatorrent.com>
Committed: Thu Aug 6 13:56:57 2015 -0700

----------------------------------------------------------------------
 engine/src/main/java/com/datatorrent/stram/cli/DTCli.java | 3 ---
 1 file changed, 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/453e8207/engine/src/main/java/com/datatorrent/stram/cli/DTCli.java
----------------------------------------------------------------------
diff --git a/engine/src/main/java/com/datatorrent/stram/cli/DTCli.java b/engine/src/main/java/com/datatorrent/stram/cli/DTCli.java
index eff2404..e3c29de 100644
--- a/engine/src/main/java/com/datatorrent/stram/cli/DTCli.java
+++ b/engine/src/main/java/com/datatorrent/stram/cli/DTCli.java
@@ -1481,9 +1481,6 @@ public class DTCli
   private void printWelcomeMessage()
   {
     System.out.println("DT CLI " + VersionInfo.getVersion() + " " + VersionInfo.getDate() + " " + VersionInfo.getRevision());
-    if (!StramClientUtils.configComplete(conf)) {
-      System.err.println("WARNING: Configuration of DataTorrent has not been complete. Please proceed with caution and only in development environment!");
-    }
   }
 
   private void printHelp(String command, CommandSpec commandSpec, PrintStream os)