Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 88A65200D0F for ; Fri, 29 Sep 2017 19:15:29 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 871E81609ED; Fri, 29 Sep 2017 17:15:29 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id CD26C1609D1 for ; Fri, 29 Sep 2017 19:15:28 +0200 (CEST) Received: (qmail 57941 invoked by uid 500); 29 Sep 2017 17:15:28 -0000 Mailing-List: contact commits-help@beam.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@beam.apache.org Delivered-To: mailing list commits@beam.apache.org Received: (qmail 57932 invoked by uid 99); 29 Sep 2017 17:15:27 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Sep 2017 17:15:27 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 7979EF5BAA; Fri, 29 Sep 2017 17:15:27 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: kenn@apache.org To: commits@beam.apache.org Date: Fri, 29 Sep 2017 17:15:28 -0000 Message-Id: In-Reply-To: <413d232b5b324eeeb3c30373a0cad530@git.apache.org> References: <413d232b5b324eeeb3c30373a0cad530@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/2] beam git commit: This closes #3913: [BEAM-2997] Encapsulate enums within a message so that C++/Python have meaningful namespaces when importing. archived-at: Fri, 29 Sep 2017 17:15:29 -0000 This closes #3913: [BEAM-2997] Encapsulate enums within a message so that C++/Python have meaningful namespaces when importing. Project: http://git-wip-us.apache.org/repos/asf/beam/repo Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/25b9c35a Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/25b9c35a Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/25b9c35a Branch: refs/heads/master Commit: 25b9c35a9987be807f54497d244474c19b348b61 Parents: 294f633 6fddd4e Author: Kenneth Knowles Authored: Fri Sep 29 10:14:06 2017 -0700 Committer: Kenneth Knowles Committed: Fri Sep 29 10:14:06 2017 -0700 ---------------------------------------------------------------------- .../construction/DisplayDataTranslation.java | 2 +- .../construction/PCollectionTranslation.java | 8 +- .../core/construction/ParDoTranslation.java | 12 +- .../core/construction/ReadTranslation.java | 8 +- .../core/construction/TriggerTranslation.java | 8 +- .../WindowingStrategyTranslation.java | 34 ++-- .../core/construction/ReadTranslationTest.java | 4 +- .../fn-api/src/main/proto/beam_fn_api.proto | 42 ++-- .../src/main/proto/beam_job_api.proto | 35 ++-- .../src/main/proto/beam_runner_api.proto | 200 ++++++++++--------- .../fn/harness/logging/BeamFnLoggingClient.java | 16 +- .../logging/BeamFnLoggingClientTest.java | 4 +- sdks/python/apache_beam/io/iobase.py | 4 +- sdks/python/apache_beam/pvalue.py | 2 +- .../python_rpc_direct_runner.py | 2 +- .../experimental/python_rpc_direct/server.py | 2 +- .../portability/universal_local_runner.py | 6 +- .../apache_beam/runners/worker/log_handler.py | 10 +- .../runners/worker/log_handler_test.py | 3 +- sdks/python/apache_beam/transforms/core.py | 6 +- sdks/python/apache_beam/transforms/trigger.py | 4 +- sdks/python/apache_beam/transforms/window.py | 6 +- 22 files changed, 219 insertions(+), 199 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam/blob/25b9c35a/sdks/python/apache_beam/runners/portability/universal_local_runner.py ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam/blob/25b9c35a/sdks/python/apache_beam/runners/worker/log_handler_test.py ----------------------------------------------------------------------