Commit a7ffee47 authored by Tres Seaver's avatar Tres Seaver

  - Make ZEO server actually startable.  Note that the ZConfig option
    for the authentication database is named 'database', while the
    equivalent argument to the StorageServer initializer is called
    'filename':  "One of these things just doesn't belong!"
parent 1966497e
...@@ -196,7 +196,7 @@ class ZEOServer: ...@@ -196,7 +196,7 @@ class ZEOServer:
transaction_timeout=self.options.transaction_timeout, transaction_timeout=self.options.transaction_timeout,
monitor_address=self.options.monitor_address, monitor_address=self.options.monitor_address,
auth_protocol=self.options.auth_protocol, auth_protocol=self.options.auth_protocol,
auth_database=self.options.auth_database, auth_filename=self.options.auth_database, # XXX option spelling
auth_realm=self.options.auth_realm) auth_realm=self.options.auth_realm)
def loop_forever(self): def loop_forever(self):
......
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