Github user Lewuathe commented on a diff in the pull request:

    https://github.com/apache/storm/pull/456#discussion_r25820615
  
    --- Diff: bin/storm ---
    @@ -183,7 +209,16 @@ def exec_storm_class(klass, jvmtype="-server", 
jvmopts=[], extrajars=[], args=[]
             os.spawnvp(os.P_WAIT, JAVA_CMD, all_args)
         else:
             # handling whitespaces in JAVA_CMD
    -        sub.call(all_args)
    +        try:
    +            ret = sub.check_output(all_args, stderr=sub.STDOUT)
    +            print(ret)
    --- End diff --
    
    Because `check_output` absolutes all outout from command. It is necessary 
to `print` alternatively to see stdout.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to