Let IsBounded take True value. This is useful for languages like Python that may use this in a conditional statement (or allow assignment from True->1/False->0).
Project: http://git-wip-us.apache.org/repos/asf/beam/repo Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/2e8ed5a9 Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/2e8ed5a9 Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/2e8ed5a9 Branch: refs/heads/master Commit: 2e8ed5a903dbc681b03b75ed1d55ebf2dac6fab6 Parents: 73da9cc Author: Robert Bradshaw <[email protected]> Authored: Mon Jul 17 16:01:18 2017 -0700 Committer: Robert Bradshaw <[email protected]> Committed: Tue Jul 25 13:18:38 2017 -0700 ---------------------------------------------------------------------- sdks/common/runner-api/src/main/proto/beam_runner_api.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam/blob/2e8ed5a9/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 0c433fa..42e2601 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 @@ -288,8 +288,8 @@ message TimerSpec { } enum IsBounded { - BOUNDED = 0; - UNBOUNDED = 1; + UNBOUNDED = 0; + BOUNDED = 1; } // The payload for the primitive Read transform.
