1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#!/usr/bin/python2.5
#
# Copyright 2009 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
"""Look for and dispatch code import jobs as needed."""
# pylint: disable-msg=W0403
import _pythonpath
from xmlrpclib import ServerProxy
from lp.codehosting.codeimport.dispatcher import CodeImportDispatcher
from canonical.config import config
from lp.services.scripts.base import LaunchpadScript
from canonical.launchpad.webapp.errorlog import globalErrorUtility
class CodeImportDispatcherScript(LaunchpadScript):
def run(self, use_web_security=False, implicit_begin=True,
isolation=None):
"""See `LaunchpadScript.run`.
We override to avoid all of the setting up all of the component
architecture and connecting to the database.
"""
self.main()
def main(self):
globalErrorUtility.configure('codeimportdispatcher')
CodeImportDispatcher(self.logger).findAndDispatchJob(
ServerProxy(config.codeimportdispatcher.codeimportscheduler_url))
if __name__ == '__main__':
script = CodeImportDispatcherScript("codeimportdispatcher")
script.lock_and_run()
|