You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by da...@apache.org on 2015/12/28 15:38:47 UTC

[1/4] storm git commit: Removes StormClientErrorHandler, since it is no longer used

Repository: storm
Updated Branches:
  refs/heads/master 03e803fd3 -> e5de2558a


Removes StormClientErrorHandler, since it is no longer used


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

Branch: refs/heads/master
Commit: 67be48c9d6da4d2fc13cb28440a130923b7a6d40
Parents: e859cf4
Author: Derek Dagit <de...@yahoo-inc.com>
Authored: Tue Dec 22 13:55:21 2015 -0600
Committer: Derek Dagit <de...@yahoo-inc.com>
Committed: Tue Dec 22 13:55:21 2015 -0600

----------------------------------------------------------------------
 .../netty/StormClientErrorHandler.java          | 41 --------------------
 1 file changed, 41 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/67be48c9/storm-core/src/jvm/backtype/storm/messaging/netty/StormClientErrorHandler.java
----------------------------------------------------------------------
diff --git a/storm-core/src/jvm/backtype/storm/messaging/netty/StormClientErrorHandler.java b/storm-core/src/jvm/backtype/storm/messaging/netty/StormClientErrorHandler.java
deleted file mode 100644
index ae317aa..0000000
--- a/storm-core/src/jvm/backtype/storm/messaging/netty/StormClientErrorHandler.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package backtype.storm.messaging.netty;
-
-import java.net.ConnectException;
-
-import org.jboss.netty.channel.*;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-public class StormClientErrorHandler extends SimpleChannelUpstreamHandler  {
-    private static final Logger LOG = LoggerFactory.getLogger(StormClientErrorHandler.class);
-    private String name;
-    
-    StormClientErrorHandler(String name) {
-        this.name = name;
-    }
-
-    @Override
-    public void exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent event) {
-        Throwable cause = event.getCause();
-        if (!(cause instanceof ConnectException)) {
-            LOG.info("Connection failed " + name, cause);
-        } 
-    }
-}


[3/4] storm git commit: adds STORM-1409

Posted by da...@apache.org.
adds STORM-1409


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

Branch: refs/heads/master
Commit: 42274b72a9108c00e07e9b1cf09042efeb595877
Parents: 9090dae
Author: Derek Dagit <de...@yahoo-inc.com>
Authored: Mon Dec 28 08:27:05 2015 -0600
Committer: Derek Dagit <de...@yahoo-inc.com>
Committed: Mon Dec 28 08:27:05 2015 -0600

----------------------------------------------------------------------
 CHANGELOG.md | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/42274b72/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9adb3f7..6f08d0b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,5 @@
 ## 0.11.0
+ * STORM-1409: StormClientErrorHandler is not used
  * STORM-1411: Some fixes for storm-windowing
  * STORM-1399: Blobstore tests should write data to `target` so it gets removed when running `mvn clean`
  * STORM-1398: Add back in TopologyDetails.getTopology


[4/4] storm git commit: Merge branch 'storm-1409-merge'

Posted by da...@apache.org.
Merge branch 'storm-1409-merge'


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

Branch: refs/heads/master
Commit: e5de2558adf34e3006532f94b38de9310d380675
Parents: 03e803f 42274b7
Author: Derek Dagit <de...@yahoo-inc.com>
Authored: Mon Dec 28 08:27:21 2015 -0600
Committer: Derek Dagit <de...@yahoo-inc.com>
Committed: Mon Dec 28 08:27:21 2015 -0600

----------------------------------------------------------------------
 CHANGELOG.md                                    |  1 +
 .../netty/StormClientErrorHandler.java          | 41 --------------------
 2 files changed, 1 insertion(+), 41 deletions(-)
----------------------------------------------------------------------



[2/4] storm git commit: Merge branch 'storm-1409-remove-stormclienterrorhandler' of https://github.com/d2r/storm into storm-1409-merge

Posted by da...@apache.org.
Merge branch 'storm-1409-remove-stormclienterrorhandler' of https://github.com/d2r/storm into storm-1409-merge


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

Branch: refs/heads/master
Commit: 9090dae3bf75274fed3ee274c7bba740ed800ae1
Parents: 03e803f 67be48c
Author: Derek Dagit <de...@yahoo-inc.com>
Authored: Mon Dec 28 08:26:33 2015 -0600
Committer: Derek Dagit <de...@yahoo-inc.com>
Committed: Mon Dec 28 08:26:33 2015 -0600

----------------------------------------------------------------------
 .../netty/StormClientErrorHandler.java          | 41 --------------------
 1 file changed, 41 deletions(-)
----------------------------------------------------------------------