~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to start-loggerhead.py

  • Committer: Michael Hudson
  • Date: 2008-03-10 04:27:46 UTC
  • mto: This revision was merged to the branch mainline in revision 153.
  • Revision ID: michael.hudson@canonical.com-20080310042746-1wdf985wil6r6ai3
empty history fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
    
87
87
    turbogears.update_config(configfile="dev.cfg", modulename="loggerhead.config")
88
88
    
89
 
    potential_overrides = [ ('server.socket_port', int), ('server.webpath', str), ('server.thread_pool', int) ]
 
89
    potential_overrides = [ ('server.socket_port', int), ('server.webpath', str), ('server.thread_pool', int), ('server.socket_host' ,str) ]
90
90
    for key, keytype in potential_overrides:
91
91
        value = config.get(key, None)
92
92
        if value is not None:
111
111
    Root = Root(config)
112
112
    
113
113
    # re-index every 6 hours
114
 
    
115
114
    index_freq = config.get('cache_rebuild_frequency', 6 * 3600)
116
115
    turbogears.scheduler.add_interval_task(initialdelay=1, interval=index_freq, action=Root._check_rebuild)
117
 
    
 
116
 
118
117
    try:
119
118
        turbogears.start_server(Root)
120
119
    finally: