You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by ss...@apache.org on 2014/02/15 04:36:17 UTC

git commit: TEZ-840. Default value of DataMovementEventPayloadProto.data_generated should be true. (sseth)

Repository: incubator-tez
Updated Branches:
  refs/heads/master 8f84fa561 -> e1d91cff5


TEZ-840. Default value of DataMovementEventPayloadProto.data_generated
should be true. (sseth)


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

Branch: refs/heads/master
Commit: e1d91cff5ff3ea59a4b3516a38f46d1ce96790c3
Parents: 8f84fa5
Author: Siddharth Seth <ss...@apache.org>
Authored: Fri Feb 14 19:36:01 2014 -0800
Committer: Siddharth Seth <ss...@apache.org>
Committed: Fri Feb 14 19:36:01 2014 -0800

----------------------------------------------------------------------
 tez-runtime-library/src/main/proto/ShufflePayloads.proto | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tez/blob/e1d91cff/tez-runtime-library/src/main/proto/ShufflePayloads.proto
----------------------------------------------------------------------
diff --git a/tez-runtime-library/src/main/proto/ShufflePayloads.proto b/tez-runtime-library/src/main/proto/ShufflePayloads.proto
index fb0d82a..34767ba 100644
--- a/tez-runtime-library/src/main/proto/ShufflePayloads.proto
+++ b/tez-runtime-library/src/main/proto/ShufflePayloads.proto
@@ -21,7 +21,7 @@ option java_outer_classname = "ShuffleUserPayloads";
 option java_generate_equals_and_hash = true;
 
 message DataMovementEventPayloadProto {
-  optional bool output_generated = 1;
+  optional bool output_generated = 1 [default = true];
   optional string host = 2;
   optional int32 port = 3;
   optional string path_component = 4;