From ca42ffa63b8f895b536242db64eb4626d50c5321 Mon Sep 17 00:00:00 2001 From: Galen Guyer Date: Mon, 2 Nov 2020 14:32:04 -0500 Subject: reduce poll time to 1 minute --- poller/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poller/__init__.py b/poller/__init__.py index 20e5cc8..7c5882b 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 = 5 * 60 # Seconds +POOL_TIME = 1 * 60 # Seconds DASHBOARD_URL = 'https://rit.edu/ready/dashboard' LATEST_DATA = None data_thread = threading.Thread() -- cgit v1.2.3