From 1ba3bdfbdaab231e8d4924984795eb84a27d8d59 Mon Sep 17 00:00:00 2001 From: drzoidberg33 Date: Wed, 2 Mar 2016 14:00:30 +0200 Subject: [PATCH] Don't check for PMS updates every 10 seconds. --- plexpy/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/__init__.py b/plexpy/__init__.py index 2ea4c4db..3443fdbe 100644 --- a/plexpy/__init__.py +++ b/plexpy/__init__.py @@ -308,7 +308,7 @@ def initialize_scheduler(): if CONFIG.MONITOR_PMS_UPDATES: schedule_job(activity_pinger.check_server_updates, 'Check for Plex updates', - hours=0, minutes=0, seconds=10) + hours=12, minutes=0, seconds=0) else: schedule_job(activity_pinger.check_server_updates, 'Check for Plex updates', hours=0, minutes=0, seconds=0)