Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added max_allowed_packet to the settings #551

Merged
merged 1 commit into from
Jan 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions config/tr_sys_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@
'PASSWORD': 'aocaik7Peib2eiquoosh',
'HOST': 'arsdb',
'PORT': '3306',
'CONN_MAX_AGE': 3600,
'CONN_HEALTH_CHECKS': True,
'max_allowed_packet': 1073741824,
'OPTIONS': {
'read_default_file': '/etc/mysql/my.cnf',
},
}
}
DJANGO_LOG_LEVEL=DEBUG
Expand Down
6 changes: 3 additions & 3 deletions tr_sys/tr_sys/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@
'PASSWORD': '',
'HOST': 'localhost', # Or an IP Address that your DB is hosted on
'PORT': '3306',
'CONN_MAX_AGE': 3600,
'CONN_HEALTH_CHECKS': True,
'max_allowed_packet': 1073741824,
'OPTIONS': {
'read_default_file': '/etc/mysql/my.cnf',
},
}
}
DJANGO_LOG_LEVEL = 'DEBUG'
Expand Down