You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by ar...@apache.org on 2016/04/29 06:12:08 UTC

[1/3] storm git commit: Flush stdout and stderr before calling "os.execvp" to prevent log loss.

Repository: storm
Updated Branches:
  refs/heads/master 0cade64f3 -> 27be83b29


Flush stdout and stderr before calling "os.execvp" to prevent log loss.


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

Branch: refs/heads/master
Commit: 17fee522dbcbd4f0e00f886cf17094c761f9831c
Parents: 4e3c5bd
Author: Karthick Duraisamy Soundararaj <ks...@groupon.com>
Authored: Mon Apr 25 01:54:39 2016 -0700
Committer: Karthick Duraisamy Soundararaj <ks...@groupon.com>
Committed: Mon Apr 25 01:54:39 2016 -0700

----------------------------------------------------------------------
 bin/storm.py | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/17fee522/bin/storm.py
----------------------------------------------------------------------
diff --git a/bin/storm.py b/bin/storm.py
index 0510c72..7153414 100755
--- a/bin/storm.py
+++ b/bin/storm.py
@@ -208,6 +208,7 @@ def exec_storm_class(klass, jvmtype="-server", jvmopts=[], extrajars=[], args=[]
         "-cp", get_classpath(extrajars, daemon),
     ] + jvmopts + [klass] + list(args)
     print("Running: " + " ".join(all_args))
+    sys.stdout.flush()
     if fork:
         os.spawnvp(os.P_WAIT, JAVA_CMD, all_args)
     elif is_windows():


[3/3] storm git commit: Added STORM-1733 to CHANGELOG.md

Posted by ar...@apache.org.
Added STORM-1733 to CHANGELOG.md


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

Branch: refs/heads/master
Commit: 27be83b2923326044dc935d7246ff0cb92555c47
Parents: ccb66d5
Author: Arun Mahadevan <ai...@hortonworks.com>
Authored: Fri Apr 29 09:35:40 2016 +0530
Committer: Arun Mahadevan <ai...@hortonworks.com>
Committed: Fri Apr 29 09:35:40 2016 +0530

----------------------------------------------------------------------
 CHANGELOG.md    | 1 +
 README.markdown | 1 +
 2 files changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/27be83b2/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c2ab151..f0fd5e0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,5 @@
 ## 2.0.0
+ * STORM-1733: Flush stdout before calling "os.execvp" to prevent log loss
  * STORM-1535: Make sure hdfs key tab login happens only once for multiple components
  * STORM-1544: Document Debug/Sampling of Topologies
  * STORM-1681: Bug in scheduling cyclic topologies when scheduling with RAS

http://git-wip-us.apache.org/repos/asf/storm/blob/27be83b2/README.markdown
----------------------------------------------------------------------
diff --git a/README.markdown b/README.markdown
index e4e7e26..b163555 100644
--- a/README.markdown
+++ b/README.markdown
@@ -260,6 +260,7 @@ under the License.
 * Basti Liu ([@basti](https://github.com/bastiliu))
 * Jark Wu ([@jark](https://github.com/wuchong))
 * Cody Wang ([@unsleepy22](https://github.com/unsleepy22))
+* Karthick Duraisamy Soundararaj ([@dsKarthick](https://github.com/dsKarthick))
 
 
 ## Acknowledgements


[2/3] storm git commit: Merge branch 'flush_launch_command_to_stderr' of https://github.com/dsKarthick/storm-1 into STORM-1733

Posted by ar...@apache.org.
Merge branch 'flush_launch_command_to_stderr' of https://github.com/dsKarthick/storm-1 into STORM-1733


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

Branch: refs/heads/master
Commit: ccb66d5fc4893b29869742a1db52e76ae8212823
Parents: 0cade64 17fee52
Author: Arun Mahadevan <ai...@hortonworks.com>
Authored: Fri Apr 29 09:30:37 2016 +0530
Committer: Arun Mahadevan <ai...@hortonworks.com>
Committed: Fri Apr 29 09:30:37 2016 +0530

----------------------------------------------------------------------
 bin/storm.py | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------