You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by hi...@apache.org on 2013/10/14 17:23:04 UTC

git commit: TEZ-556. Incorrect exception message in LogicalIOProcessorRuntimeTask. (Mark Wagner via hitesh)

Updated Branches:
  refs/heads/master 1d1912202 -> cbe0910e0


TEZ-556. Incorrect exception message in LogicalIOProcessorRuntimeTask. (Mark Wagner via hitesh)


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

Branch: refs/heads/master
Commit: cbe0910e0ef6bd943e9fbdde0501bd367a2e1d66
Parents: 1d19122
Author: Hitesh Shah <hi...@apache.org>
Authored: Mon Oct 14 08:22:15 2013 -0700
Committer: Hitesh Shah <hi...@apache.org>
Committed: Mon Oct 14 08:22:15 2013 -0700

----------------------------------------------------------------------
 .../java/org/apache/tez/runtime/LogicalIOProcessorRuntimeTask.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tez/blob/cbe0910e/tez-runtime-internals/src/main/java/org/apache/tez/runtime/LogicalIOProcessorRuntimeTask.java
----------------------------------------------------------------------
diff --git a/tez-runtime-internals/src/main/java/org/apache/tez/runtime/LogicalIOProcessorRuntimeTask.java b/tez-runtime-internals/src/main/java/org/apache/tez/runtime/LogicalIOProcessorRuntimeTask.java
index 6beec91..f9852a1 100644
--- a/tez-runtime-internals/src/main/java/org/apache/tez/runtime/LogicalIOProcessorRuntimeTask.java
+++ b/tez-runtime-internals/src/main/java/org/apache/tez/runtime/LogicalIOProcessorRuntimeTask.java
@@ -299,7 +299,7 @@ public class LogicalIOProcessorRuntimeTask extends RuntimeTask {
     if (!(processor instanceof LogicalIOProcessor)) {
       throw new TezUncheckedException(processor.getClass().getName()
           + " is not a sub-type of LogicalIOProcessor."
-          + " Only LogicalOutput sub-types supported by LogicalIOProcessor.");
+          + " Only LogicalIOProcessor sub-types supported by LogicalIOProcessorRuntimeTask.");
     }
     return (LogicalIOProcessor) processor;
   }