~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to database/schema/preflight.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-09-16 14:55:43 UTC
  • mfrom: (9893.9.6 trivial)
  • Revision ID: launchpad@pqm.canonical.com-20110916145543-0uh8vlt8jfm2yaj8
[r=julian-edwards][bug=851686] Make buildd-manager connect as a
        unique database user

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
# added here. The preflight check will fail if any of these users are
41
41
# connected, so these systems will need to be shut down manually before
42
42
# a database update.
43
 
FRAGILE_USERS = frozenset(['archivepublisher', 'fiera'])
 
43
FRAGILE_USERS = frozenset(['archivepublisher', 'buildd_manager'])
44
44
 
45
45
# How lagged the cluster can be before failing the preflight check.
46
46
MAX_LAG = timedelta(seconds=60)