Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
819dfd61
Commit
819dfd61
authored
Apr 24, 2005
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated to use ZODB 3.4a4, featuring savepoints.
parent
ac8ffd9e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
doc/CHANGES.txt
doc/CHANGES.txt
+4
-0
lib/python/Products/ZODBMountPoint/Mount.py
lib/python/Products/ZODBMountPoint/Mount.py
+3
-1
No files found.
doc/CHANGES.txt
View file @
819dfd61
...
@@ -33,6 +33,10 @@ Zope Changes
...
@@ -33,6 +33,10 @@ Zope Changes
- ZCatalog.CatalogBrains: An _unrestrictedGetObject method has
- ZCatalog.CatalogBrains: An _unrestrictedGetObject method has
been added.
been added.
- ZODB transactions now support savepoints. See
transaction/savepoint.txt. These will replace
subtransactions.
Bugs fixed
Bugs fixed
- Collector #1754: Fixed import of 'transaction' in
- Collector #1754: Fixed import of 'transaction' in
...
...
lib/python/Products/ZODBMountPoint/Mount.py
View file @
819dfd61
...
@@ -201,7 +201,9 @@ class ConnectionPatches:
...
@@ -201,7 +201,9 @@ class ConnectionPatches:
am
.
closedConnection
(
conn
)
am
.
closedConnection
(
conn
)
conn
.
cacheGC
()
# This is a good time to do some GC
conn
.
cacheGC
()
# This is a good time to do some GC
# XXX maybe we ought to call the close callbacks.
# XXX maybe we ought to call the close callbacks.
conn
.
_storage
=
conn
.
_tmp
=
conn
.
new_oid
=
conn
.
_opened
=
None
conn
.
_storage
=
conn
.
_normal_storage
=
None
conn
.
_savepoint_storage
=
None
conn
.
new_oid
=
conn
.
_opened
=
None
conn
.
_debug_info
=
()
conn
.
_debug_info
=
()
# collector #1350: ensure that the connection is unregistered
# collector #1350: ensure that the connection is unregistered
...
...
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