~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to database/schema/preflight.py

  • Committer: Jelmer Vernooij
  • Date: 2011-09-21 14:28:02 UTC
  • mfrom: (14006 devel)
  • mto: This revision was merged to the branch mainline in revision 14010.
  • Revision ID: jelmer@canonical.com-20110921142802-7ggkc204igsy532w
MergeĀ lp:launchpad

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)