Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/cieplik/cabot into ciepli…
Browse files Browse the repository at this point in the history
…k-master
  • Loading branch information
dbuxton committed Aug 13, 2015
2 parents 6d428df + 15c5110 commit f39709d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cabot/cabot_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
CALENDAR_ICAL_URL = os.environ.get('CALENDAR_ICAL_URL')
WWW_HTTP_HOST = os.environ.get('WWW_HTTP_HOST')
WWW_SCHEME = os.environ.get('WWW_SCHEME', "https")
ALERT_INTERVAL = os.environ.get('ALERT_INTERVAL', 10)
NOTIFICATION_INTERVAL = os.environ.get('NOTIFICATION_INTERVAL', 120)
HTTP_USER_AGENT = os.environ.get('HTTP_USER_AGENT', 'Cabot')
ALERT_INTERVAL = int(os.environ.get('ALERT_INTERVAL', 10))
NOTIFICATION_INTERVAL = int(os.environ.get('NOTIFICATION_INTERVAL', 120))

# Default plugins are used if the user has not specified.
CABOT_PLUGINS_ENABLED = os.environ.get('CABOT_PLUGINS_ENABLED', 'cabot_alert_hipchat,cabot_alert_twilio,cabot_alert_email')

0 comments on commit f39709d

Please sign in to comment.