Repository: beam
Updated Branches:
  refs/heads/master 69a51c988 -> b67a30bf1


Disable abc metaclass due to issues with pickling.


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

Branch: refs/heads/master
Commit: 24b39e457519f45df55a90a6c6c92fa8df5128b7
Parents: 22e49e6
Author: Robert Bradshaw <rober...@gmail.com>
Authored: Mon Jul 24 17:19:47 2017 -0700
Committer: Robert Bradshaw <rober...@gmail.com>
Committed: Wed Jul 26 10:55:53 2017 -0700

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


http://git-wip-us.apache.org/repos/asf/beam/blob/24b39e45/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 c155cfd..9e4635d 100644
--- a/sdks/python/apache_beam/utils/urns.py
+++ b/sdks/python/apache_beam/utils/urns.py
@@ -53,7 +53,8 @@ class RunnerApiFn(object):
   to register serialization via pickling.
   """
 
-  __metaclass__ = abc.ABCMeta
+  # TODO(robertwb): Figure out issue with dill + local classes + abc metaclass
+  # __metaclass__ = abc.ABCMeta
 
   _known_urns = {}
 

Reply via email to