From 5d37e8c96882cc98335ff64f6dd74cd87a18691c Mon Sep 17 00:00:00 2001 From: Charles Chen Date: Tue, 19 Jul 2016 16:29:22 -0700 Subject: [PATCH] Remove "beamhead-02" container workaround --- sdks/python/apache_beam/utils/dependency.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/sdks/python/apache_beam/utils/dependency.py b/sdks/python/apache_beam/utils/dependency.py index bd0983c85f89..b809cf2eae7b 100644 --- a/sdks/python/apache_beam/utils/dependency.py +++ b/sdks/python/apache_beam/utils/dependency.py @@ -434,11 +434,7 @@ def get_required_container_version(): except pkg.DistributionNotFound: # This case covers Apache Beam end-to-end testing scenarios. All these tests # will run with a special container version. - # - # TODO(ccy): change this back to 'beamhead' when worker support for the - # recent change to use WindowedValueCoders in Sources and Sinks is rolled - # out. - return 'beamhead-02' + return 'beamhead' def _download_pypi_sdk_package(temp_dir):