Disable SQLALCHEMY track modification feature as it puts overhead on system, and if not set, now emits a warning.
parent
e803464ee0
commit
d3d96d5c05
|
|
@ -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
|
||||
##########################################################################
|
||||
|
|
|
|||
Loading…
Reference in New Issue