diff options
author | Galen Guyer <galen@galenguyer.com> | 2020-11-05 15:35:27 -0500 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2020-11-05 15:35:27 -0500 |
commit | 03bf0d63655d7f1bb187ff71ab584837f5a5694b (patch) | |
tree | 85d1ab2a3f77c99e9115fe688a30cc2a99522320 | |
parent | ca42ffa63b8f895b536242db64eb4626d50c5321 (diff) |
move interval back to 5 minutes
-rw-r--r-- | poller/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poller/__init__.py b/poller/__init__.py index 7c5882b..20e5cc8 100644 --- a/poller/__init__.py +++ b/poller/__init__.py @@ -10,7 +10,7 @@ from flask import Flask, jsonify import requests from bs4 import BeautifulSoup -POOL_TIME = 1 * 60 # Seconds +POOL_TIME = 5 * 60 # Seconds DASHBOARD_URL = 'https://rit.edu/ready/dashboard' LATEST_DATA = None data_thread = threading.Thread() |