Commit 052ac888 authored by dieter's avatar dieter

Merge branch 'python38-and-39' of https://github.com/zopefoundation/ZEO into python38-and-39

parents 49542a20 171c2a60
......@@ -485,17 +485,10 @@ class Client(object):
self.verify_invalidation_queue = [] # See comment in init :(
protocol = self.protocol
if server_tid is None:
try:
try:
if server_tid is None:
server_tid = yield protocol.fut('lastTransaction')
except ClientDisconnected as exc:
# If needed, after consideration more exceptions can be
# caught here. Possibly you want to include this into the
# following try clause.
del self.protocol
self.register_failed(protocol, exc)
try:
cache = self.cache
if cache:
cache_tid = cache.getLastTid()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment