[Zope-Checkins] CVS: Zope/lib/python/ZEO - runzeo.py:1.16

Tres Seaver tseaver@zope.com
Mon, 14 Jul 2003 23:35:23 -0400


Update of /cvs-repository/Zope/lib/python/ZEO
In directory cvs.zope.org:/tmp/cvs-serv16337/lib/python/ZEO

Modified Files:
	runzeo.py 
Log Message:


  - 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!"


=== Zope/lib/python/ZEO/runzeo.py 1.15 => 1.16 ===
--- Zope/lib/python/ZEO/runzeo.py:1.15	Fri May 30 15:20:57 2003
+++ Zope/lib/python/ZEO/runzeo.py	Mon Jul 14 23:35:18 2003
@@ -196,7 +196,7 @@
             transaction_timeout=self.options.transaction_timeout,
             monitor_address=self.options.monitor_address,
             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)
 
     def loop_forever(self):