Added section on changes to socket listener implementation.

This commit is contained in:
Vinay Sajip 2009-11-25 19:06:08 +00:00
parent 4bd4617bfd
commit ef22edf57e
1 changed files with 10 additions and 0 deletions

View File

@ -611,6 +611,16 @@ usable in the subsequent ``configure() call``. The ``dictConfigClass``
would be bound to the subclass, and then ``dictConfig()`` could be
called exactly as in the default, uncustomized state.
Change to Socket Listener Implementation
========================================
The existing socket listener implementation will be modified as
follows: when a configuration message is received, an attempt will be
made to deserialize to a dictionary using the json module. If this
step fails, the message will be assumed to be in the fileConfig format
and processed as before. If serialization is successful, then
``dictConfig()`` will be called to process the resulting dictionary.
Configuration Errors
====================