Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZEO
Commits
759a8c98
Unverified
Commit
759a8c98
authored
Jan 23, 2019
by
Jason Madden
Committed by
GitHub
Jan 23, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #135 from zopefoundation/issue134
Stop calling the deprecated checkSecure method.
parents
a2377d15
79dc08f2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
CHANGES.rst
CHANGES.rst
+7
-1
ClientStorage.py
src/ZEO/ClientStorage.py
+0
-1
No files found.
CHANGES.rst
View file @
759a8c98
...
...
@@ -6,9 +6,15 @@ Changelog
- Add support for Python 3.7.
- Switch from `
msgpack-python` to `msgpack
`. Currently a version < 0.6
- Switch from `
`msgpack-python`` to ``msgpack`
`. Currently a version < 0.6
is required.
- Stop calling the deprecated ``checkSecure`` method when creating a
``ClientStorage``. With ZODB 5.2.2 and above, this issued a warning.
With older versions, this *could* issue a log message, but this was
considered `a misfeature
<https://github.com/zopefoundation/ZODB/issues/155>`_. See `issue
134 <https://github.com/zopefoundation/ZEO/issues/134>`_.
5.2.0 (2018-03-28)
------------------
...
...
src/ZEO/ClientStorage.py
View file @
759a8c98
...
...
@@ -249,7 +249,6 @@ class ClientStorage(ZODB.ConflictResolution.ConflictResolvingStorage):
self
.
fshelper
=
ZODB
.
blob
.
FilesystemHelper
(
blob_dir
,
layout_name
=
'zeocache'
)
self
.
fshelper
.
create
()
self
.
fshelper
.
checkSecure
()
else
:
self
.
fshelper
=
None
...
...
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