From c5b44f9d2cdb09f820eb0d690e8bb6f4582a988f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikola=20Forr=C3=B3?= Date: Thu, 30 Aug 2018 11:23:02 +0200 Subject: [PATCH] Change event sync interval --- twitch-cache-api/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitch-cache-api/app.py b/twitch-cache-api/app.py index f14824b..5a5eaf7 100644 --- a/twitch-cache-api/app.py +++ b/twitch-cache-api/app.py @@ -43,7 +43,7 @@ app.config.update( args=(app, db), max_instances=1, trigger='interval', - seconds=600)]) + seconds=300)]) if app.config.get('SQLALCHEMY_DATABASE_URI', '').startswith('sqlite://'): @sqlalchemy.event.listens_for(sqlalchemy.engine.Engine, 'connect')