~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to start-loggerhead.py

  • Committer: Michael Hudson
  • Date: 2007-05-29 12:51:34 UTC
  • mfrom: (128.1.11 testing)
  • Revision ID: michael.hudson@canonical.com-20070529125134-fffimo5o8ynk64uu
merge from my testing branch:
 includes unit tests, but more interestingly the fix for #116869

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
# read loggerhead config
56
56
 
57
57
from configobj import ConfigObj
58
 
config = sys._loggerhead_config = ConfigObj(os.path.join(home, 'loggerhead.conf'), encoding='utf-8')
 
58
config = ConfigObj(os.path.join(home, 'loggerhead.conf'), encoding='utf-8')
59
59
extra_path = config.get('bzrpath', None)
60
60
if extra_path:
61
61
    sys.path.insert(0, extra_path)
85
85
 
86
86
from loggerhead.controllers import Root
87
87
 
 
88
Root = Root(config)
 
89
 
88
90
# re-index every 6 hours
89
91
 
90
92
index_freq = config.get('cache_rebuild_frequency', 6 * 3600)