Closed konapun closed 3 years ago
Hi @konapun and thanks for the report!
I agree that this trace is confusing and it's going to get fixed with #77. But the reason why you're getting the StreamEmpty
exception is because you're awaiting an empty stream (stream.map(funnel, self._route_data)
). Since there is no last item to return, a StreamEmpty
exception is raised instead.
I hope that helps.
I'm trying to send a stream to multiple processors in series and am getting the following error when the second processor receives the stream:
The project isn't open source at the moment so I can't refer you to the code that produces this error but I will try to create a simplified version to reproduce it.