Make SDK-specific serialized blob really a blob
Project: http://git-wip-us.apache.org/repos/asf/beam/repo Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/380b75e2 Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/380b75e2 Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/380b75e2 Branch: refs/heads/master Commit: 380b75e2d0b55eb00cec0c030e5dddc796ec8af5 Parents: 5d6dafa Author: Kenneth Knowles <[email protected]> Authored: Thu Feb 16 14:45:05 2017 -0800 Committer: Kenneth Knowles <[email protected]> Committed: Tue Feb 21 11:50:52 2017 -0800 ---------------------------------------------------------------------- sdks/common/runner-api/src/main/proto/beam_runner_api.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam/blob/380b75e2/sdks/common/runner-api/src/main/proto/beam_runner_api.proto ---------------------------------------------------------------------- diff --git a/sdks/common/runner-api/src/main/proto/beam_runner_api.proto b/sdks/common/runner-api/src/main/proto/beam_runner_api.proto index f5dc81d..2919580 100644 --- a/sdks/common/runner-api/src/main/proto/beam_runner_api.proto +++ b/sdks/common/runner-api/src/main/proto/beam_runner_api.proto @@ -682,7 +682,7 @@ message SdkFunctionSpec { // (Required) The raw data of the function that the SDK knows how to // deserialize, but need not be comprehensible to any other runner, SDK, or // other entity. - google.protobuf.Any data = 4; + bytes data = 4; } // TODO: transfer javadoc here
