You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by ka...@apache.org on 2017/02/07 02:19:53 UTC

[1/3] storm git commit: STORM-2338: Subprocess exception handling is broken in storm.py on Windows environment

Repository: storm
Updated Branches:
  refs/heads/master b5f02d4e4 -> b705d861b


STORM-2338: Subprocess exception handling is broken in storm.py on Windows environment


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

Branch: refs/heads/master
Commit: 5be2ce8afb33bff926547da6034f16cdc909f4a0
Parents: b5f02d4
Author: Tibor Kiss <ti...@gmail.com>
Authored: Fri Feb 3 09:10:10 2017 +0100
Committer: Jungtaek Lim <ka...@gmail.com>
Committed: Tue Feb 7 11:13:07 2017 +0900

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


http://git-wip-us.apache.org/repos/asf/storm/blob/5be2ce8a/bin/storm.py
----------------------------------------------------------------------
diff --git a/bin/storm.py b/bin/storm.py
index 29802fe..7ab1f9c 100755
--- a/bin/storm.py
+++ b/bin/storm.py
@@ -260,7 +260,7 @@ def exec_storm_class(klass, jvmtype="-server", jvmopts=[], extrajars=[], args=[]
         try:
             ret = sub.check_output(all_args, stderr=sub.STDOUT)
             print(ret)
-        except sub.CalledProcessor as e:
+        except sub.CalledProcessError as e:
             sys.exit(e.returncode)
     else:
         os.execvp(JAVA_CMD, all_args)


[3/3] storm git commit: STORM-2338: CHANGELOG, reflect backport STORM-2197, STORM-2324, STORM-2321, STORM-2326, STORM-2335

Posted by ka...@apache.org.
STORM-2338: CHANGELOG, reflect backport STORM-2197, STORM-2324, STORM-2321, STORM-2326, STORM-2335


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

Branch: refs/heads/master
Commit: b705d861b925e0a8e486449f01c594150021aae7
Parents: 7f1af22
Author: Jungtaek Lim <ka...@gmail.com>
Authored: Tue Feb 7 11:14:41 2017 +0900
Committer: Jungtaek Lim <ka...@gmail.com>
Committed: Tue Feb 7 11:14:41 2017 +0900

----------------------------------------------------------------------
 CHANGELOG.md | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/b705d861/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8dc0c8a..e4e1f35 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -29,7 +29,6 @@
  * storm-2205: Racecondition in getting nimbus summaries while ZK connections are reconnected
  * STORM-1278: Port org.apache.storm.daemon.worker to java
  * STORM-2192: Add a new IAutoCredentials plugin to support SSL files
- * STORM-2197: NimbusClient connectins leak due to leakage in ThriftClient
  * STORM-2185: Storm Supervisor doesn't delete directories properly sometimes
  * STORM-2188: Interrupt all executor threads before joining in executor shutdown
  * STORM-203: Adding paths to default java library path
@@ -199,12 +198,8 @@
 ## 1.1.0
  * STORM-2296: Kafka spout no dup on leader changes
  * STORM-2014: New Kafka spout duplicates checking if failed messages have reached max retries
- * STORM-2324: Fix deployment failure if resources directory is missing in topology jar
  * STORM-1443: [Storm SQL] Support customizing parallelism in StormSQL
  * STORM-2148: [Storm SQL] Trident mode: back to code generate and compile Trident topology
- * STORM-2321: Handle blobstore zk key deletion in KeySequenceNumber.
- * STORM-2336: Close Localizer and AsyncLocalizer when supervisor is shutting down
- * STORM-2335: Fix broken Topology visualization with empty ':transferred' in executor stats
  * STORM-2331: Emitting from JavaScript should work when not anchoring.
  * STORM-2320:  DRPC client printer class reusable for local and remote DRPC.
  * STORM-2225: change spout config to be simpler.
@@ -305,6 +300,12 @@
  * STORM-1868: Modify TridentKafkaWordCount to run in distributed mode
 
 ## 1.0.3
+ * STORM-2197: NimbusClient connectins leak due to leakage in ThriftClient
+ * STORM-2321: Handle blobstore zk key deletion in KeySequenceNumber.
+ * STORM-2324: Fix deployment failure if resources directory is missing in topology jar
+ * STORM-2335: Fix broken Topology visualization with empty ':transferred' in executor stats
+ * STORM-2336: Close Localizer and AsyncLocalizer when supervisor is shutting down
+ * STORM-2338: Subprocess exception handling is broken in storm.py on Windows environment
  * STORM-2337: Broken documentation generation for storm-metrics-profiling-internal-actions.md and windows-users-guide.md
  * STORM-2325: Logviewer doesn't consider 'storm.local.hostname'
  * STORM-1742: More accurate 'complete latency'


[2/3] storm git commit: Merge branch 'STORM-2338-merge'

Posted by ka...@apache.org.
Merge branch 'STORM-2338-merge'


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

Branch: refs/heads/master
Commit: 7f1af22860e10f013b1bc2a7a11adb9a1fceb4f6
Parents: b5f02d4 5be2ce8
Author: Jungtaek Lim <ka...@gmail.com>
Authored: Tue Feb 7 11:13:13 2017 +0900
Committer: Jungtaek Lim <ka...@gmail.com>
Committed: Tue Feb 7 11:13:13 2017 +0900

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