Commit 458c1882 authored by Hanno Schlichting's avatar Hanno Schlichting

LP #143604: Removed top-level database-quota-size from zope.conf, some...

LP #143604: Removed top-level database-quota-size from zope.conf, some storages support a quota option instead.
parent 35292e92
......@@ -146,6 +146,9 @@ Features Added
Bugs Fixed
++++++++++
- LP #143604: Removed top-level database-quota-size from zope.conf, some
storages support a quota option instead.
- LP #143089: Removed the top-level zeo-client-name option from zope.conf, as
it had no effect since ZODB 3.2.
......
......@@ -65,10 +65,6 @@ def suppress_all_site_roots(value):
value and _setenv('SUPPRESS_SITEROOT', value)
return value
def database_quota_size(value):
value and _setenv('ZOPE_DATABASE_QUOTA', value)
return value
def structured_text_header_level(value):
value is not None and _setenv('STX_DEFAULT_LEVEL', value)
return value
......
......@@ -772,18 +772,6 @@
<metadefault>off</metadefault>
</key>
<key name="database-quota-size" datatype="byte-size"
handler="database_quota_size">
<description>
Set this directive to an integer in bytes in order to place a hard
limit on the size which the default FileStorage-backed Zope database
can grow. Additions to the database will not be permitted once this
file size is exceeded.
</description>
<metadefault>unset</metadefault>
</key>
<section type="eventlog" name="*" attribute="eventlog">
<description>
Describes what level of log output is desired and where it
......
......@@ -721,21 +721,6 @@ instancehome $INSTANCE
# suppress-all-site-roots on
# Directive: database-quota-size
#
# Description:
# Set this directive to an integer in bytes in order to place a hard
# limit on the size which the default FileStorage-backed Zope database
# can grow. Additions to the database will not be permitted once this
# filesize is exceeded.
#
# Default: unset
#
# Example:
#
# database-quota-size 1000000
# Directives: logger
#
# Description:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment