-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IndexError after inserting #80
Comments
@agmo1993 Thank you for reporting issue. I will check the API response. |
Indeed, I see the same. Seems like we get |
Not sure if it is the best way to fix it but it avoids it |
Avoid IndexError after INSERT query (#80)
@romainr Thank you for fixing it. Good contribution! |
@agmo1993 Please try if this fixes this issue. Thank you. |
I had the same issue and this solved it. When do you think will this be released? |
While we are waiting, I make this local correction 😉 :
|
should be seeing a new release relatively soon. @bryanyang0528 is hard at work on updating the project. thanks for your patience. |
Thank you @ozair-junior !!! |
i'm receiving the following error after inserting into a stream using
Traceback (most recent call last):
File "", line 1, in
File "/home/ubuntu/.local/lib/python3.6/site-packages/ksql/client.py", line 42, in ksql
return self.sa.ksql(ksql_string, stream_properties=stream_properties)
File "/home/ubuntu/.local/lib/python3.6/site-packages/ksql/api.py", line 64, in ksql
self._raise_for_status(r, response)
File "/home/ubuntu/.local/lib/python3.6/site-packages/ksql/api.py", line 54, in _raise_for_status
if r_json[0]["@type"] == "currentStatus" and r_json[0]["commandStatus"]["status"] == "ERROR":
IndexError: list index out of range
Although the insert is successful and I can view it on a select query, any ideas about what's causing it to throw an error?
The text was updated successfully, but these errors were encountered: