add django-dbconn-retry library (#1262)

This commit is contained in:
Joey Orlando 2023-01-31 20:17:54 +01:00 committed by GitHub
parent f0a34ffd1f
commit 94fe7979cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 1 deletions

View file

@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
### Added
- Add [`django-dbconn-retry` library](https://github.com/jdelic/django-dbconn-retry) to `INSTALLED_APPS` to attempt
to alleviate occasional `django.db.utils.OperationalError` errors
### Changed
### Fixed
## v1.1.20 (2023-01-30)
### Added

View file

@ -45,4 +45,5 @@ opentelemetry-instrumentation-celery==0.36b0
opentelemetry-instrumentation-pymysql==0.36b0
opentelemetry-instrumentation-wsgi==0.36b0
opentelemetry-exporter-otlp-proto-grpc==1.15.0
pyroscope-io==0.8.1
pyroscope-io==0.8.1
django-dbconn-retry==0.1.7

View file

@ -220,6 +220,7 @@ INSTALLED_APPS = [
"social_django",
"polymorphic",
"fcm_django",
"django_dbconn_retry",
]
REST_FRAMEWORK = {