[Zope] problem with Zeo, it hangs a lot and never reply the request

Dieter Maurer dieter@handshake.de
Thu, 8 Aug 2002 21:31:39 +0200


Gustavo M. Palomares Reyes writes:
 > ... ZEO server and ZEO client die ...
 >   File "/usr/local/Zope/lib/python/ZEO/ClientStorage.py", line 143, in
 > notifyConnected
 >     LOG("ClientStorage", INFO, "Connected to storage")
 > TypeError: object of type 'None' is not callable
Sad, "LOG" is still "None".

I fear, you will need some debugging and check why "LOG" is 'None'.

The problem is detected in "ClientStorage.py, line 143".
Start there. Check, where "LOG" is imported from.
See, how it is supposed to be initialized. Check, why it is not.

You can use "print" statements or use the "pdb" debugger (which
is not very nice). More advanced debuggers come, e.g., with
WingIDE (but this costs something).


Dieter