Does this mean that things are now working as expected.

I see 4 processes in each process group there now.

What are the outstanding issues?

Graham

On 18/06/2013, at 10:41 AM, Josh Nathanson <[email protected]> wrote:

> 
> 
> 
> On Mon, Jun 17, 2013 at 4:28 PM, Graham Dumpleton 
> <[email protected]> wrote:
> 
> On 18/06/2013, at 2:44 AM, Josh Nathanson <[email protected]> wrote:
> > I think the table creation is kind of a red herring.
> >
> > To try and test what was going on, I commented out all the code in the main 
> > function of the python application, and just put a print statement "in main 
> > function."
> >
> > When I added application-group= ${GLOBAL}, it printed the statement 8 times 
> > on startup, twice for each process.
> > When I removed application-group=${GLOBAL}, it printed the statement 4 
> > times on startup, once for each process.
> > In both cases the application preloaded, contrary to your statement that 
> > adding application-group was required for preloading.
> >
> > Is this what you would expect to see?
> 
> Is it a typo that you keep saying ${GLOBAL} instead of %{GLOBAL}?
> 
> In your print statements, do:
> 
> import mod_wsgi
> print mod_wsgi.process_group
> print mod_wsgi.application_group
> 
> to confirm what they are being loaded into.
> 
> Do note that if there is an error on preloading, the WSGI script will be 
> deemed to have not loaded. The first request will then try and reload it, 
> although if that errors again and keeps failing, it will subsequently try and 
> reload it on every request.
> 
> Put a print statement as the very last line in the WSGI script file to see if 
> that runs and check all Apache error log files and not just that VirtualHost.
> 
> In some odd cases for strange Apache error log setup, details of errors on 
> loading the WSGI script haven't been logged properly. Having that print 
> statement will show if it does get to the end.
> 
> Also make sure you have LogLevel at info so mod_wsgi logs about when it is 
> loading stuff. Go find those messages and post them so can see. They will 
> show process/application group names and process IDs. Thus can see better 
> what is happening.
> 
> Graham
> 
> 
> Graham,
> 
> I gave some misleading information in the previous email.  As you said, 
> application-group is required for preloading, and the reason I was seeing the 
> 4 vs. 8 print statements was because I have another VHost that did have 
> application-group configured.  So that one was preloading, and that's what I 
> was seeing.
> 
> Unfortunately ${GLOBAL} was not a typo, that's what I was using.  In the 
> trial that produced the output below I have corrected that.
> 
> Note that I commented out the code that was causing errors so just the print 
> statements are outputting.  Also I don't see that mod_wsgi.application_group 
> is outputting anything.
> 
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=367): Starting process 
> 'taccit_controller_prod' with uid=48, gid=48 and threads=2.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=367): Python home 
> /am/apps/other/python/2.6.6/Linux.x86_64.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=367): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=366): Starting process 
> 'taccit_controller_prod' with uid=48, gid=48 and threads=2.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=366): Python home 
> /am/apps/other/python/2.6.6/Linux.x86_64.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=366): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=365): Starting process 
> 'taccit_controller_prod' with uid=48, gid=48 and threads=2.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=365): Python home 
> /am/apps/other/python/2.6.6/Linux.x86_64.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=365): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=368): Starting process 
> 'task_scheduler_prod' with uid=48, gid=48 and threads=1.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=368): Python home 
> /am/apps/other/python/2.6.6/Linux.x86_64.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=368): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=364): Starting process 
> 'taccit_controller_prod' with uid=48, gid=48 and threads=2.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=364): Python home 
> /am/apps/other/python/2.6.6/Linux.x86_64.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=364): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=369): Starting process 
> 'task_scheduler_prod' with uid=48, gid=48 and threads=1.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=369): Python home 
> /am/apps/other/python/2.6.6/Linux.x86_64.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=369): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=370): Starting process 
> 'task_scheduler_prod' with uid=48, gid=48 and threads=1.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=370): Python home 
> /am/apps/other/python/2.6.6/Linux.x86_64.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=370): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=371): Starting process 
> 'task_scheduler_prod' with uid=48, gid=48 and threads=1.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=371): Python home 
> /am/apps/other/python/2.6.6/Linux.x86_64.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=371): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=372): Starting process 
> 'taccit_controller_test' with uid=48, gid=48 and threads=2.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=372): Python home 
> /am/apps/other/python/2.6.6/Linux.x86_64.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=372): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=373): Starting process 
> 'taccit_controller_test' with uid=48, gid=48 and threads=2.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=373): Python home 
> /am/apps/other/python/2.6.6/Linux.x86_64.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=373): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=374): Starting process 
> 'taccit_controller_test' with uid=48, gid=48 and threads=2.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=374): Python home 
> /am/apps/other/python/2.6.6/Linux.x86_64.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=374): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=375): Starting process 
> 'taccit_controller_test' with uid=48, gid=48 and threads=2.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=375): Python home 
> /am/apps/other/python/2.6.6/Linux.x86_64.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=375): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=376): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=377): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=378): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=380): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=381): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=382): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=383): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=384): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=385): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=386): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=379): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [notice] Apache/2.2.15 (Unix) mod_wsgi/3.4 
> Python/2.6.6 configured -- resuming normal operations
> [Mon Jun 17 17:17:35 2013] [info] Server built: Feb 13 2012 22:31:42
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=388): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=390): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=389): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=391): Initializing Python.
> [Mon Jun 17 17:17:35 2013] [info] mod_wsgi (pid=387): Initializing Python.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=370): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=369): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=367): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=374): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=368): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=366): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=364): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=364): Adding 
> '/am/apps/client/common/prod/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=371): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=377): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=378): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=365): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=365): Adding 
> '/am/apps/client/common/prod/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=373): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=373): Adding 
> '/am/apps/client/common/test/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=373): Adding 
> '/am/apps/client/cmclient/test/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=373): Adding 
> '/am/apps/slp/common/test/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=375): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=375): Adding 
> '/am/apps/client/common/test/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=375): Adding 
> '/am/apps/client/cmclient/test/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=368): Adding 
> '/am/apps/slp/look_and_feel/prod' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=366): Adding 
> '/am/apps/client/common/prod/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=366): Adding 
> '/am/apps/client/cmclient/prod/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=366): Adding 
> '/am/apps/slp/common/prod/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=380): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=369): Adding 
> '/am/apps/slp/look_and_feel/prod' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=370): Adding 
> '/am/apps/slp/look_and_feel/prod' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=364): Adding 
> '/am/apps/client/cmclient/prod/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=364): Adding 
> '/am/apps/slp/common/prod/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=364): Adding 
> '/am/apps/slp/taccit/prod/courses_model' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=367): Adding 
> '/am/apps/client/common/prod/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=367): Adding 
> '/am/apps/client/cmclient/prod/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=367): Adding 
> '/am/apps/slp/common/prod/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=372): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=372): Adding 
> '/am/apps/client/common/test/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=372): Adding 
> '/am/apps/client/cmclient/test/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=371): Adding 
> '/am/apps/slp/look_and_feel/prod' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=374): Adding 
> '/am/apps/client/common/test/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=374): Adding 
> '/am/apps/client/cmclient/test/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=374): Adding 
> '/am/apps/slp/common/test/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=384): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=365): Adding 
> '/am/apps/client/cmclient/prod/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=365): Adding 
> '/am/apps/slp/common/prod/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=365): Adding 
> '/am/apps/slp/taccit/prod/courses_model' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=365, 
> process='taccit_controller_prod', application=''): Loading WSGI script 
> '/am/apps/slp/taccit/prod/courses_controllermain.wsgi'.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=382): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=376): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=381): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=375): Adding 
> '/am/apps/slp/common/test/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=375): Adding 
> '/am/apps/slp/taccit/test/courses_model' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=366): Adding 
> '/am/apps/slp/taccit/prod/courses_model' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=366, 
> process='taccit_controller_prod', application=''): Loading WSGI script 
> '/am/apps/slp/taccit/prod/courses_controllermain.wsgi'.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=373): Adding 
> '/am/apps/slp/taccit/test/courses_model' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=373, 
> process='taccit_controller_test', application=''): Loading WSGI script 
> '/am/apps/slp/taccit/test/courses_controllermain.wsgi'.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=364, 
> process='taccit_controller_prod', application=''): Loading WSGI script 
> '/am/apps/slp/taccit/prod/courses_controllermain.wsgi'.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=372): Adding 
> '/am/apps/slp/common/test/modules/python' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=372): Adding 
> '/am/apps/slp/taccit/test/courses_model' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=372, 
> process='taccit_controller_test', application=''): Loading WSGI script 
> '/am/apps/slp/taccit/test/courses_controllermain.wsgi'.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=367): Adding 
> '/am/apps/slp/taccit/prod/courses_model' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=367, 
> process='taccit_controller_prod', application=''): Loading WSGI script 
> '/am/apps/slp/taccit/prod/courses_controllermain.wsgi'.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=385): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=374): Adding 
> '/am/apps/slp/taccit/test/courses_model' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=374, 
> process='taccit_controller_test', application=''): Loading WSGI script 
> '/am/apps/slp/taccit/test/courses_controllermain.wsgi'.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=383): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=375, 
> process='taccit_controller_test', application=''): Loading WSGI script 
> '/am/apps/slp/taccit/test/courses_controllermain.wsgi'.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=386): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=388): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=390): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=391): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=389): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=379): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=387): Attach interpreter ''.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=369): Create interpreter 
> 'task_scheduler_prod'.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=368): Create interpreter 
> 'task_scheduler_prod'.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=371): Create interpreter 
> 'task_scheduler_prod'.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=371): Adding 
> '/am/apps/slp/look_and_feel/prod' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=370): Create interpreter 
> 'task_scheduler_prod'.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=370): Adding 
> '/am/apps/slp/look_and_feel/prod' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=369): Adding 
> '/am/apps/slp/look_and_feel/prod' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=368): Adding 
> '/am/apps/slp/look_and_feel/prod' to path.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=369, 
> process='task_scheduler_prod', application='task_scheduler_prod'): Loading 
> WSGI script '/am/apps/slp/task_schedulerprod/main.wsgi'.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=368, 
> process='task_scheduler_prod', application='task_scheduler_prod'): Loading 
> WSGI script '/am/apps/slp/task_schedulerprod/main.wsgi'.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=371, 
> process='task_scheduler_prod', application='task_scheduler_prod'): Loading 
> WSGI script '/am/apps/slp/task_schedulerprod/main.wsgi'.
> [Mon Jun 17 17:17:36 2013] [info] mod_wsgi (pid=370, 
> process='task_scheduler_prod', application='task_scheduler_prod'): Loading 
> WSGI script '/am/apps/slp/task_schedulerprod/main.wsgi'.
> [Mon Jun 17 17:17:45 2013] [error] 
> /am/apps/other/python/2.6.6/Linux.x86_64/lib/python2.6/site-packages/pyramid_jinja2/__init__.py:468:
>  DeprecationWarning: reload_templtes setting is deprecated, use 
> pyramid.reload_templates instead.
> [Mon Jun 17 17:17:45 2013] [error] 
> /am/apps/other/python/2.6.6/Linux.x86_64/lib/python2.6/site-packages/pyramid_jinja2/__init__.py:468:
>  DeprecationWarning: reload_templtes setting is deprecated, use 
> pyramid.reload_templates instead.
> [Mon Jun 17 17:17:45 2013] [error]   
> _get_or_build_default_environment(config.registry)
> [Mon Jun 17 17:17:45 2013] [error] 
> /am/apps/other/python/2.6.6/Linux.x86_64/lib/python2.6/site-packages/pyramid_jinja2/__init__.py:468:
>  DeprecationWarning: reload_templtes setting is deprecated, use 
> pyramid.reload_templates instead.
> [Mon Jun 17 17:17:45 2013] [error]   
> _get_or_build_default_environment(config.registry)
> [Mon Jun 17 17:17:45 2013] [error]   
> _get_or_build_default_environment(config.registry)
> [Mon Jun 17 17:17:45 2013] [error] 
> /am/apps/other/python/2.6.6/Linux.x86_64/lib/python2.6/site-packages/pyramid_jinja2/__init__.py:468:
>  DeprecationWarning: reload_templtes setting is deprecated, use 
> pyramid.reload_templates instead.
> [Mon Jun 17 17:17:45 2013] [error]   
> _get_or_build_default_environment(config.registry)
> [Mon Jun 17 17:17:45 2013] [error] in module global area
> [Mon Jun 17 17:17:45 2013] [error] in module global area
> [Mon Jun 17 17:17:45 2013] [error] in module global area
> [Mon Jun 17 17:17:45 2013] [error] in module global area
> [Mon Jun 17 17:17:45 2013] [error] in module global area
> [Mon Jun 17 17:17:45 2013] [error] in module global area
> [Mon Jun 17 17:17:45 2013] [error] in module global area
> [Mon Jun 17 17:17:45 2013] [error] in module global area
> [Mon Jun 17 17:17:46 2013] [error] in module main function
> [Mon Jun 17 17:17:46 2013] [error] in module main function
> [Mon Jun 17 17:17:46 2013] [error] process_group:  taccit_controller_prod
> [Mon Jun 17 17:17:46 2013] [error] application_group
> [Mon Jun 17 17:17:46 2013] [error] in module main function
> [Mon Jun 17 17:17:46 2013] [error] process_group:  taccit_controller_prod
> [Mon Jun 17 17:17:46 2013] [error] application_group
> [Mon Jun 17 17:17:46 2013] [error] process_group:  taccit_controller_test
> [Mon Jun 17 17:17:46 2013] [error] application_group
> [Mon Jun 17 17:17:46 2013] [error] in module main function
> [Mon Jun 17 17:17:46 2013] [error] process_group:  taccit_controller_test
> [Mon Jun 17 17:17:46 2013] [error] application_group
> [Mon Jun 17 17:17:46 2013] [error] in module main function
> [Mon Jun 17 17:17:46 2013] [error] process_group:  taccit_controller_prod
> [Mon Jun 17 17:17:46 2013] [error] application_group
> [Mon Jun 17 17:17:47 2013] [error] in module main function
> [Mon Jun 17 17:17:47 2013] [error] process_group:  taccit_controller_prod
> [Mon Jun 17 17:17:47 2013] [error] application_group
> [Mon Jun 17 17:17:47 2013] [error] in module main function
> [Mon Jun 17 17:17:47 2013] [error] in module main function
> [Mon Jun 17 17:17:47 2013] [error] process_group:  taccit_controller_test
> [Mon Jun 17 17:17:47 2013] [error] application_group
> [Mon Jun 17 17:17:47 2013] [error] process_group:  taccit_controller_test
> [Mon Jun 17 17:17:47 2013] [error] application_group
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "modwsgi" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at http://groups.google.com/group/modwsgi.
> For more options, visit https://groups.google.com/groups/opt_out.
>  
>  

-- 
You received this message because you are subscribed to the Google Groups 
"modwsgi" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/modwsgi.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to