Disable SQLALCHEMY track modification feature as it puts overhead on system, and if not set, now emits a warning.

This commit is contained in:
Murtuza Zabuawala 2016-07-26 13:01:56 +01:00 committed by Dave Page
parent e803464ee0
commit d3d96d5c05

View File

@ -266,6 +266,12 @@ STORAGE_DIR = os.path.join(
##########################################################################
THREADED_MODE = True
##########################################################################
# Do not allow SQLALCHEMY to track modification as it is going to be
# deprecated in future
##########################################################################
SQLALCHEMY_TRACK_MODIFICATIONS = False
##########################################################################
# Local config settings
##########################################################################