~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/controllers/__init__.py

  • Committer: Michael Hudson
  • Date: 2010-05-07 01:03:17 UTC
  • mfrom: (414.1.1 loggerhead)
  • Revision ID: michael.hudson@canonical.com-20100507010317-kr5ipx6qgn65636o
(mkanat) use a global lock to protect access to the lru cache

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
        kwargs = dict(parse_querystring(environ))
71
71
        util.set_context(kwargs)
72
72
        args = []
73
 
        while 1:
 
73
        while True:
74
74
            arg = path_info_pop(environ)
75
75
            if arg is None:
76
76
                break