You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by lc...@apache.org on 2017/11/10 18:11:41 UTC

[3/4] beam git commit: Update urns.py

Update urns.py

Fix typo in GLOBAL_WINDOW_CODER urn constant.

Project: http://git-wip-us.apache.org/repos/asf/beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/13dcec9c
Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/13dcec9c
Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/13dcec9c

Branch: refs/heads/release-2.2.0
Commit: 13dcec9c9b455e481afd23d6f53f42628b2954fe
Parents: bddb869
Author: tvalentyn <tv...@users.noreply.github.com>
Authored: Wed Nov 8 17:31:43 2017 -0800
Committer: Valentyn Tymofieiev <va...@google.com>
Committed: Thu Nov 9 14:06:20 2017 -0800

----------------------------------------------------------------------
 sdks/python/apache_beam/utils/urns.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam/blob/13dcec9c/sdks/python/apache_beam/utils/urns.py
----------------------------------------------------------------------
diff --git a/sdks/python/apache_beam/utils/urns.py b/sdks/python/apache_beam/utils/urns.py
index 2aeaa53..92bf437 100644
--- a/sdks/python/apache_beam/utils/urns.py
+++ b/sdks/python/apache_beam/utils/urns.py
@@ -55,7 +55,7 @@ INTERVAL_WINDOW_CODER = "urn:beam:coders:interval_window:0.1"
 ITERABLE_CODER = "urn:beam:coders:stream:0.1"
 KV_CODER = "urn:beam:coders:kv:0.1"
 LENGTH_PREFIX_CODER = "urn:beam:coders:length_prefix:0.1"
-GLOBAL_WINDOW_CODER = "urn:beam:coders:urn:beam:coders:global_window:0.1"
+GLOBAL_WINDOW_CODER = "urn:beam:coders:global_window:0.1"
 WINDOWED_VALUE_CODER = "urn:beam:coders:windowed_value:0.1"