~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to database/schema/preflight.py

  • Committer: Stuart Bishop
  • Date: 2011-04-27 09:13:48 UTC
  • mto: (7675.1045.296 db-devel)
  • mto: This revision was merged to the branch mainline in revision 12957.
  • Revision ID: stuart.bishop@canonical.com-20110427091348-rtjhym8f5ooye9xp
Obsolete comment

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
SYSTEM_USERS = frozenset(['postgres', 'slony', 'nagios'])
30
30
 
31
31
# How lagged the cluster can be before failing the preflight check.
32
 
# In seconds.
33
32
MAX_LAG = timedelta(seconds=45)
34
33
 
35
34