Comment 7 for bug 220440

Revision history for this message
Florent (florent.x) wrote :

AFAICT it does not solve the problem reported in the title and description above.

Actually the issue is that the section <product-config myproduct> is not parsed when using Paste.
The issue is related with zope.app.wsgi because after some investigation it appears that everything is correctly registered when using zope.app.server (or even zope.app.twisted)

Then if we compare "zope/app/server/main.py", function "setup(...)" with "zope/app/wsgi/__init__.py", function "config(...)" we see that some code is missing:
...
   if options.product_config:
       setProductConfigurations(options.product_config)
...

Or I missed something?