Commit d7dd0efd authored by Jim Fulton's avatar Jim Fulton

Added serial number info to conflict error.

parent 3725dd74
...@@ -184,7 +184,7 @@ ...@@ -184,7 +184,7 @@
# may have a back pointer to a version record or to a non-version # may have a back pointer to a version record or to a non-version
# record. # record.
# #
__version__='$Revision: 1.18 $'[11:-2] __version__='$Revision: 1.19 $'[11:-2]
import struct, time, os, bpthread, string, base64 import struct, time, os, bpthread, string, base64
from struct import pack, unpack from struct import pack, unpack
...@@ -484,7 +484,8 @@ class FileStorage(BaseStorage.BaseStorage): ...@@ -484,7 +484,8 @@ class FileStorage(BaseStorage.BaseStorage):
): ):
raise POSException.VersionLockError, oid raise POSException.VersionLockError, oid
if serial != oserial: raise POSException.ConflictError if serial != oserial: raise POSException.ConflictError, (
serial, oserial)
tfile=self._tfile tfile=self._tfile
write=tfile.write write=tfile.write
......
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