We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 121c6dd commit 6284291Copy full SHA for 6284291
1 file changed
wherobots/db/connection.py
@@ -132,7 +132,9 @@ def __listen(self):
132
if query.state == ExecutionState.SUCCEEDED:
133
self.__request_results(execution_id)
134
elif query.state == ExecutionState.FAILED:
135
- query.handler(OperationalError("Query execution failed"))
+ # Don't do anything here; the ERROR event is coming with more
136
+ # details.
137
+ pass
138
139
elif kind == EventKind.EXECUTION_RESULT:
140
results = message.get("results")
0 commit comments