Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dianfu committed Aug 12, 2021
1 parent d466870 commit a3351fa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Expand Up @@ -47,7 +47,6 @@ cdef class IntermediateOutputProcessor(OutputProcessor):
cdef class FunctionOperation(Operation):
cdef OutputProcessor _output_processor
cdef bint _is_python_coder
cdef StreamCoderImpl _value_coder_impl
cdef object process_element
cdef object operation
cdef object operation_cls
Expand Down
Expand Up @@ -111,7 +111,7 @@ cdef class FunctionOperation(Operation):
self._output_processor = NetworkOutputProcessor(consumer)

_value_coder_impl = consumer.windowed_coder.wrapped_value_coder.get_impl()._value_coder
if isinstance(self._value_coder_impl, FlinkLengthPrefixCoderBeamWrapper):
if isinstance(_value_coder_impl, FlinkLengthPrefixCoderBeamWrapper):
self._is_python_coder = False
else:
self._is_python_coder = True
Expand Down

0 comments on commit a3351fa

Please sign in to comment.