Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZODB
Commits
80aa2f3d
Commit
80aa2f3d
authored
Oct 31, 2008
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a bug in mapping storage that caused hangs in transactions after
empty transactions.
parent
1a896e9c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
1 deletion
+26
-1
src/CHANGES.txt
src/CHANGES.txt
+9
-0
src/ZODB/MappingStorage.py
src/ZODB/MappingStorage.py
+1
-1
src/ZODB/tests/BasicStorage.py
src/ZODB/tests/BasicStorage.py
+16
-0
No files found.
src/CHANGES.txt
View file @
80aa2f3d
...
...
@@ -5,6 +5,9 @@
3.9.0a2 (2008-??-??)
====================
New Features
------------
- The connection now estimates the object size based on its pickle size
and informs the cache about size changes.
...
...
@@ -19,6 +22,12 @@
XXX There are known issues with this implementation that need to be
sorted out before it is "released".
Bug Fixes
---------
- MappingStorage hung when committing a transaction *after* committing
an empty transaction.
3.9.0a1 (2008-10-29)
====================
...
...
src/ZODB/MappingStorage.py
View file @
80aa2f3d
...
...
@@ -286,7 +286,7 @@ class MappingStorage(object):
# ZODB.interfaces.IStorage
@
ZODB
.
utils
.
locked
(
opened
)
def
tpc_finish
(
self
,
transaction
,
func
=
lambda
tid
:
None
):
if
(
transaction
is
not
self
.
_transaction
)
or
not
self
.
_tdata
:
if
(
transaction
is
not
self
.
_transaction
):
return
tid
=
self
.
_tid
...
...
src/ZODB/tests/BasicStorage.py
View file @
80aa2f3d
...
...
@@ -183,3 +183,19 @@ class BasicStorage:
def
checkInterfaces
(
self
):
for
iface
in
zope
.
interface
.
providedBy
(
self
.
_storage
):
zope
.
interface
.
verify
.
verifyObject
(
iface
,
self
.
_storage
)
def
checkMultipleEmptyTransactions
(
self
):
# There was a bug in handling empty transactions in mapping
# storage that caused the commit lock not to be released. :(
transaction
.
begin
()
t
=
transaction
.
get
()
self
.
_storage
.
tpc_begin
(
t
)
self
.
_storage
.
tpc_vote
(
t
)
self
.
_storage
.
tpc_finish
(
t
)
t
.
commit
()
transaction
.
begin
()
t
=
transaction
.
get
()
self
.
_storage
.
tpc_begin
(
t
)
# Hung here before
self
.
_storage
.
tpc_vote
(
t
)
self
.
_storage
.
tpc_finish
(
t
)
t
.
commit
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment