You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a note if a use client.query(query) instead (without the return_objects=True) it still raises an error, but now is StopIteration, probably for the same reason.
The text was updated successfully, but these errors were encountered:
I've forked the code, modernized it (replaced hyper with HTTPX, bumped all dependencies, updated to Python 3.9 as the minimal version, and fixed all the tests to behave with latest KSQL DB versions (0.29.0). Could you check if it's still present in my version?
This is my first issue, so sorry if i missed something.
I have encountered an issue when reading data from a stream using a PULL Query (im new to KSQL sorry if the problem is actually the query)
I have a test stream with only 4 rows, when i try to read it with the code bellow it outputs the rows but then throws an JSONDecodeError.
The traceback is bellow (i use rich hence the pretty output, i can show the raw if needed), the problem is that the row returned is empty
A simple check like this fixes the issue
As a note if a use
client.query(query)
instead (without the return_objects=True) it still raises an error, but now is StopIteration, probably for the same reason.The text was updated successfully, but these errors were encountered: