From 8a88b4b7336e21956ff11e403eaee72d04efa794 Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Tue, 24 Feb 2015 12:03:35 -0500 Subject: [PATCH] Reduce the pypo POLL_INTERVAL to lessen impact of RabbitMQ or web server outages --- python_apps/pypo/pypofetch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_apps/pypo/pypofetch.py b/python_apps/pypo/pypofetch.py index d7c79b581..5564825a3 100644 --- a/python_apps/pypo/pypofetch.py +++ b/python_apps/pypo/pypofetch.py @@ -37,7 +37,7 @@ signal.signal(signal.SIGINT, keyboardInterruptHandler) #need to wait for Python 2.7 for this.. #logging.captureWarnings(True) -POLL_INTERVAL = 1800 +POLL_INTERVAL = 480 class PypoFetch(Thread):