[Zope-Checkins] CVS: Zope/inst - custom_zodb.py.in:1.1.2.2
Jens Vagelpohl
jens@zope.com
Sat, 7 Sep 2002 09:59:13 -0400
Update of /cvs-repository/Zope/inst
In directory cvs.zope.org:/tmp/cvs-serv6006/inst
Modified Files:
Tag: chrism-install-branch
custom_zodb.py.in
Log Message:
- fix a couple wrong zeo directive names
- fix faulty keyword argument to zLOG.LOG
=== Zope/inst/custom_zodb.py.in 1.1.2.1 => 1.1.2.2 ===
--- Zope/inst/custom_zodb.py.in:1.1.2.1 Mon Sep 2 03:35:09 2002
+++ Zope/inst/custom_zodb.py.in Sat Sep 7 09:59:12 2002
@@ -32,8 +32,8 @@
if get(Directives.use_zeo_server):
port = None
path = None
- hostname = get(Directives.zeo_storage_server_name)
- port_or_path = get(Directives.zeo_storage_server_port)
+ hostname = get(Directives.zeo_storage_server_hostname)
+ port_or_path = get(Directives.zeo_storage_server_path_or_port)
storage_name = get(Directives.zeo_storage_server_storagename) or '1'
cache_size = get(Directives.zeo_client_cache_size) or 200000000
debug = get(Directives.zeo_client_debug) or 0
@@ -60,7 +60,7 @@
min_disconnect_poll=min_disconn, max_disconnect_poll=max_disconn,
wait_for_server_on_startup=wait)
except:
- zLOG.LOG('custom_zodb', 100, 'Could not use ZEO!', err=sys.exc_info())
+ zLOG.LOG('custom_zodb', 100, 'Could not use ZEO!', error=sys.exc_info())
traceback.print_exc()
err = ('Could not successfully start Zope due to ZEO configuration '
'error! Clues exist in the traceback printed above. Check '