On Sep 16, 2010, at 1:04 PM, mdipierro wrote:
> 
> I believe this was fixed. try 1.85.2 posted yesterday

Perhaps, but it might be a case we haven't considered. Jonathan, if 1.85.2 does 
not fix the problem, I can suggest two alternatives.

If you are *not* using application-specific routing, call rewrite.select() at 
the beginning of your thread. This will initialize the routes attribute to the 
global values (or default values if you have no routes.py).

If you *are* using app-specific routing, I think I'll need to enhance 
rewrite.select(), which I ought to do anyway.

Please let us know, first, if 1.85.2 fixes the problem.

Massimo, the reason I think it might not fix it is that thread.routes is 
initialized for the current thread in main, in the rewrite.select() call. If 
the app creates a new thread, it's going to have a new rewrite.thread object, 
with no routes attribute.

I think.



> 
> On Sep 16, 2:26 pm, "Jonathan Z." <jzem...@gmail.com> wrote:
>> I'm kicking off a threaded process.  As part of the "run" method, I'm
>> calling: env("application", import_models=True) in order to work with
>> the web2py environment inside the context of my thread.  As a result,
>> models are parsed and the following exception is raised:
>> 
>> Traceback (most recent call last):
>>   File ".../web2py/gluon/restricted.py", line 188, in restricted
>>     exec ccode in environment
>>   File "applications/app/models/db.py", line 32, in <module>
>>     auth = Auth(globals(), db)
>>   File ".../web2py/gluon/tools.py", line 804, in __init__
>>     self.settings.login_url = self.url('user', args='login')
>>   File ".../web2py/gluon/tools.py", line 762, in url
>>     f=f, args=args, vars=vars)
>>   File ".../web2py/gluon/html.py", line 228, in _URL
>>     return URL(*args, **kwargs)
>>   File ".../web2py/gluon/html.py", line 206, in URL
>>     return XML(rewrite.filter_out(url, env))
>>   File ".../web2py/gluon/rewrite.py", line 183, in filter_out
>>     if thread.routes.routes_out:
>> AttributeError: 'thread._local' object has no attribute 'routes'
>> 
>> As soon as URLs are parsed during Auth initialization, the thread hits
>> a case where an invalid "routes" attribute is dereferenced within
>> rewrite.py.  My threaded code was working until the following change
>> was rolled into 1.84.x: "moved DAL and routes to thread.local"


Reply via email to