Commit 6d2a7717 authored by dieter's avatar dieter

suppress `ReadConflictError` as well as `ConflictError`

parent 6a73562c
...@@ -25,6 +25,7 @@ class ServerProtocol(base.Protocol): ...@@ -25,6 +25,7 @@ class ServerProtocol(base.Protocol):
unlogged_exception_types = ( unlogged_exception_types = (
ZODB.POSException.POSKeyError, ZODB.POSException.POSKeyError,
ZODB.POSException.ConflictError, ZODB.POSException.ConflictError,
ZODB.POSException.ReadConflictError,
) )
def __init__(self, loop, addr, zeo_storage, msgpack): def __init__(self, loop, addr, zeo_storage, msgpack):
......
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