aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2020-11-02 14:32:04 -0500
committerGalen Guyer <galen@galenguyer.com>2020-11-02 14:32:04 -0500
commitca42ffa63b8f895b536242db64eb4626d50c5321 (patch)
treefbd85054b650728659550dcc856d3d2c2c0f7fe2
parentc4f9973f8cbc60c2ed619ef51652c1979a10f330 (diff)
reduce poll time to 1 minute
-rw-r--r--poller/__init__.py2
1 files changed, 1 insertions, 1 deletions
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()