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
1c9b406a
Commit
1c9b406a
authored
May 08, 2009
by
Andreas Zeidler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
backport r92744 from trunk: "Fix corner case NameError."
parent
53f94301
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
NEWS.txt
NEWS.txt
+3
-0
src/ZODB/blob.py
src/ZODB/blob.py
+1
-1
No files found.
NEWS.txt
View file @
1c9b406a
...
@@ -11,6 +11,9 @@ Whats new in ZODB 3.8.1
...
@@ -11,6 +11,9 @@ Whats new in ZODB 3.8.1
Bugs Fixed:
Bugs Fixed:
- (3.8.1) Fixed ``NameError`` in cases where a directory cannot be created,
e.g. when the necessary permissions are missing.
- (3.8.1) Reset ``_cache`` on a connection's ``_reader`` object when
- (3.8.1) Reset ``_cache`` on a connection's ``_reader`` object when
resetting the cache, to prevent reads from the old cache object, e.g.
resetting the cache, to prevent reads from the old cache object, e.g.
during Zope2's auto-refresh of products.
during Zope2's auto-refresh of products.
...
...
src/ZODB/blob.py
View file @
1c9b406a
...
@@ -367,7 +367,7 @@ class FilesystemHelper:
...
@@ -367,7 +367,7 @@ class FilesystemHelper:
except
OSError
:
except
OSError
:
# We might have lost a race. If so, the directory
# We might have lost a race. If so, the directory
# must exist now
# must exist now
assert
os
.
path
.
exists
(
target
path
)
assert
os
.
path
.
exists
(
path
)
return
path
return
path
def
getOIDForPath
(
self
,
path
):
def
getOIDForPath
(
self
,
path
):
...
...
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