Commit 6549edcb authored by Fred Drake's avatar Fred Drake

- add support for transaction-timeout

- add comment that we need logging support from the schema still
- revert to using a relative URL for the import, since we're not quite
  using the schema components yet
parent 87a90e41
<schema type="ZEO">
<!-- XXX This schema still needs logging support. -->
<description>
This schema describes the configuration of the ZEO storage server
process.
</description>
<!-- Use the storage types defined by ZODB. -->
<import package="zodb"/>
<import src="../ZODB/config.xml"/>
<key name="address" datatype="socket-address"
required="yes">
......@@ -34,7 +37,7 @@
</description>
</key>
<key name="invalidation-history-size" datatype="integer"
<key name="invalidation-queue-size" datatype="integer"
required="no"
default="100">
<description>
......@@ -45,6 +48,16 @@
</description>
</key>
<key name="transaction-timeout" datatype="integer"
required="no">
<description>
The maximum amount of time to wait for a transaction to commit
after acquiring the storage lock, specified in seconds. If the
transaction takes too long, the client connection will be closed
and the transaction aborted.
</description>
</key>
<multisection name="+" type="storage"
attribute="storages"
required="yes">
......
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