Commit 1f2eb2f2 authored by Wichert Akkerman's avatar Wichert Akkerman

Backport r85640 from trunk

parent 8b5eeccb
...@@ -146,6 +146,16 @@ ...@@ -146,6 +146,16 @@
read_only_fallback should be true. read_only_fallback should be true.
</description> </description>
</key> </key>
<key name="username" required="no">
<description>
The authentication username of the server.
</description>
</key>
<key name="password" required="no">
<description>
The authentication password of the server.
</description>
</key>
<key name="realm" required="no"> <key name="realm" required="no">
<description> <description>
The authentication realm of the server. Some authentication The authentication realm of the server. Some authentication
......
...@@ -162,7 +162,10 @@ class ZEOClient(BaseConfig): ...@@ -162,7 +162,10 @@ class ZEOClient(BaseConfig):
max_disconnect_poll=self.config.max_disconnect_poll, max_disconnect_poll=self.config.max_disconnect_poll,
wait=self.config.wait, wait=self.config.wait,
read_only=self.config.read_only, read_only=self.config.read_only,
read_only_fallback=self.config.read_only_fallback) read_only_fallback=self.config.read_only_fallback,
username=self.config.username,
password=self.config.password,
realm=self.config.realm)
class BDBStorage(BaseConfig): class BDBStorage(BaseConfig):
......
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