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
|
#!/usr/bin/python2.4
#
# Copyright 2009 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
# pylint: disable-msg=C0103,W0403
# Author: Gustavo Niemeyer <gustavo@niemeyer.net>
# David Allouche <david@allouche.net>
"""Update bzr branches information in the database"""
import _pythonpath
import logging
from lp.codehosting.scanner.branch_scanner import BranchScanner
from canonical.config import config
from lp.services.scripts.base import LaunchpadCronScript
from canonical.launchpad.webapp.errorlog import globalErrorUtility
class UpdateBranches(LaunchpadCronScript):
def main(self):
# We don't want debug messages from bzr at that point.
bzr_logger = logging.getLogger("bzr")
bzr_logger.setLevel(logging.INFO)
globalErrorUtility.configure('branchscanner')
BranchScanner(self.txn, self.logger).scanAllBranches()
if __name__ == '__main__':
script = UpdateBranches(
"updatebranches", dbuser=config.branchscanner.dbuser)
script.lock_and_run()
|