Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
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
ZEO
Commits
14adf5ab
Commit
14adf5ab
authored
8 years ago
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed, _load_oid wasn't cleared if loadBefore returned None.
parent
e5141646
master
4
4-fixonly-t
4-nxd
4-nxd--t
x/iotrace
y/clear-cache-on-pack
y/rawext
5.2.1
5.2.1.dev0
5.2.0
5.1.2
5.1.1
5.1.0
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
5.0.0b0
5.0.0a2
5.0.0a1
5.0.0a0
4.3.1
4.3.0
4.2.1
4.2.0
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
6 deletions
+5
-6
src/ZEO/ClientStorage.py
src/ZEO/ClientStorage.py
+5
-6
No files found.
src/ZEO/ClientStorage.py
View file @
14adf5ab
...
...
@@ -845,12 +845,11 @@ class ClientStorage(object):
result
=
self
.
_server
.
loadBefore
(
oid
,
tid
)
if
result
:
with
self
.
_lock
:
# for atomic processing of invalidations
if
self
.
_load_status
:
data
,
tid
,
end
=
result
self
.
_cache
.
store
(
oid
,
tid
,
end
,
data
)
self
.
_load_oid
=
None
with
self
.
_lock
:
# for atomic processing of invalidations
if
result
and
self
.
_load_status
:
data
,
tid
,
end
=
result
self
.
_cache
.
store
(
oid
,
tid
,
end
,
data
)
self
.
_load_oid
=
None
return
result
...
...
This diff is collapsed.
Click to expand it.
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