2010/1/8 inaf <[email protected]>: > After enabling debug, following line seem to stand out but not sure if > they are related to this.. it seems like Apache stars new threads and > Python gets initizalized by mod_wsgi right after... there are many > occurences of this in the logs.. why would Python be initialized and > interpreter would be attached?: > > > [Thu Jan 07 17:47:24 2010] [info] mod_wsgi (pid=2718): Initializing > Python. > [Thu Jan 07 17:47:24 2010] [info] mod_wsgi (pid=2711): Attach > interpreter ''.
Don't worry about that, it is a mod_wsgi message for my debugging purposes to simply say that have registered the main Python interpreter which was created in a table of interpreters for later look up. So, I attached to the already existing interpreter, as opposed to later where it may say that new sub interpreter had to be created instead as one by the required name didn't exist. Graham
-- You received this message because you are subscribed to the Google Groups "modwsgi" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/modwsgi?hl=en.
