Skip to content

Commit

Permalink
bugfix for ReplicationRouter setting
Browse files Browse the repository at this point in the history
  • Loading branch information
bluebamus committed Sep 26, 2024
1 parent c2b6d3a commit 6f82195
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/settings/prod.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

ALLOWED_HOSTS = host.split(",")

DATABASE_ROUTERS = ["core.replica_router.ReplicationRouter"]
DATABASE_ROUTERS = ["common.core.replica_router.ReplicationRouter"]

DATABASES = {
# "default": {
Expand Down
2 changes: 1 addition & 1 deletion config/settings/stage.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

ALLOWED_HOSTS = host.split(",")

DATABASE_ROUTERS = ["core.replica_router.ReplicationRouter"]
DATABASE_ROUTERS = ["common.core.replica_router.ReplicationRouter"]

DATABASES = {
# "default": {
Expand Down

0 comments on commit 6f82195

Please sign in to comment.