We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fdaaac commit bfbada3Copy full SHA for bfbada3
neo4j/v1/bolt.py
@@ -350,7 +350,6 @@ def fetch(self):
350
elif signature == FAILURE:
351
response = self.responses.popleft()
352
response.complete = True
353
- self.acknowledge_failure()
354
response.on_failure(*fields)
355
else:
356
raise ProtocolError("Unexpected response message with signature %02X" % signature)
neo4j/v1/session.py
@@ -230,6 +230,7 @@ def on_footer(metadata):
230
231
def on_failure(metadata):
232
# Called on execution failure.
233
+ self.connection.acknowledge_failure()
234
self._consumed = True
235
raise CypherError(metadata)
236
0 commit comments