Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom JEANNESSON committed Nov 21, 2023
1 parent 34ae0c1 commit 520b1e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/config/settings/development.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
}
else:
if os.environ.get("DB_ENGINE"):
error_msg = f"DB_ENGINE={os.environ.get('DB_ENGINE')} is not supported"
error_msg = f"DB_ENGINE={os.environ.get('DB_ENGINE')} is not supported."
else:
error_msg = "DB_ENGINE environment variable is not set"
error_msg = "DB_ENGINE environment variable is not set."
raise ValueError(error_msg)

DATABASES["default"]["ATOMIC_REQUESTS"] = True
Expand Down

0 comments on commit 520b1e5

Please sign in to comment.