aboutsummaryrefslogtreecommitdiff
path: root/src/bootstrap.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/bootstrap.py')
-rw-r--r--src/bootstrap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap.py b/src/bootstrap.py
index ea3b5d05..dcd3ea14 100644
--- a/src/bootstrap.py
+++ b/src/bootstrap.py
@@ -31,7 +31,7 @@ if os.environ.get('Newspipe_TESTING', False) == 'true':
application.config['TESTING'] = True
else:
application.debug = conf.LOG_LEVEL <= logging.DEBUG
- application.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = True
+ application.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
application.config['SQLALCHEMY_DATABASE_URI'] \
= conf.SQLALCHEMY_DATABASE_URI
application.config['SQLALCHEMY_POOL_SIZE'] = 20
bgstack15