You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by bo...@apache.org on 2015/04/24 15:45:30 UTC

[3/9] storm git commit: Minor comment fix

Minor comment fix


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

Branch: refs/heads/master
Commit: 323534097617d44e263c52c27dcb6da1b418816f
Parents: 720a93e
Author: Kishor Patil <kp...@yahoo-inc.com>
Authored: Mon Feb 23 15:08:08 2015 -0600
Committer: Kishor Patil <kp...@yahoo-inc.com>
Committed: Wed Mar 18 12:02:33 2015 -0500

----------------------------------------------------------------------
 .../src/jvm/backtype/storm/utils/ExtendedThreadPoolExecutor.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/32353409/storm-core/src/jvm/backtype/storm/utils/ExtendedThreadPoolExecutor.java
----------------------------------------------------------------------
diff --git a/storm-core/src/jvm/backtype/storm/utils/ExtendedThreadPoolExecutor.java b/storm-core/src/jvm/backtype/storm/utils/ExtendedThreadPoolExecutor.java
index 6730780..ec2af1b 100644
--- a/storm-core/src/jvm/backtype/storm/utils/ExtendedThreadPoolExecutor.java
+++ b/storm-core/src/jvm/backtype/storm/utils/ExtendedThreadPoolExecutor.java
@@ -56,7 +56,7 @@ public class ExtendedThreadPoolExecutor extends ThreadPoolExecutor{
       } catch (ExecutionException ee) {
         t = ee.getCause();
       } catch (InterruptedException ie) {
-        // If future got interrupted exception, we want to main parent thread itself.
+        // If future got interrupted exception, we want to interrupt parent thread itself.
         Thread.currentThread().interrupt();
       }
     }