From 4c990769fd04373eb5b2882d5c4d9a1052eaedcc Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Sat, 18 May 2013 22:05:35 +0000 Subject: [PATCH] check less frequently for config changes if not using pynotify --- pandora/app/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora/app/config.py b/pandora/app/config.py index ae189bb18..d124b7e8f 100644 --- a/pandora/app/config.py +++ b/pandora/app/config.py @@ -134,7 +134,7 @@ def reloader_thread(): if mtime > _config_mtime: load_config() _config_mtime = mtime - time.sleep(1) + time.sleep(10) except: #sys.stderr.write("reloading config failed\n") pass