added the compression option to the main settings file

This commit is contained in:
dvanaken 2019-10-23 19:44:47 -04:00 committed by Dana Van Aken
parent 40024b4d3c
commit 9f3fe29c27
2 changed files with 12 additions and 7 deletions

View File

@ -197,6 +197,18 @@ INSTALLED_APPS = (
'django_db_logger',
)
# ==============================================
# DATABASE CONFIGURATION
# ==============================================
# Enables compression on MySQL >= 5.6 on tables:
# - website_backupdata
# - website_knobdata
# - website_metricdata
# - website_pipelinedata
MYSQL_COMPRESSION = False
# ==============================================
# RABBITMQ/CELERY CONFIGURATION
# ==============================================

View File

@ -34,13 +34,6 @@ DATABASES = {
}
}
# Enables compression on MySQL >= 5.6 on tables:
# - website_backupdata
# - website_knobdata
# - website_metricdata
# - website_pipelinedata
MYSQL_COMPRESSION = False
# ==============================================
# DEBUG CONFIGURATION
# ==============================================