Skip to content

Commit

Permalink
[FIX]Correct wrong env var name
Browse files Browse the repository at this point in the history
Merge pull request #415 from annuaire-entreprises-data-gouv-fr/fix-env-var
  • Loading branch information
HAEKADI authored Sep 2, 2024
2 parents a24dbdf + f54068f commit 4fd1b11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
ELASTIC_USER = os.getenv("ELASTIC_USER")
ELASTIC_URL = os.getenv("ELASTIC_URL")
DSN_SENTRY = os.getenv("DSN_SENTRY")
CURRENT_ENV = os.getenv("CURRENT_ENV", "dev")
CURRENT_ENV = os.getenv("ENV", "dev")
APM_URL = os.getenv("APM_URL")
BASE_DIR = pathlib.Path(__file__).parent
OPEN_API_PATH = BASE_DIR / "doc" / "open-api.yml"
Expand Down

0 comments on commit 4fd1b11

Please sign in to comment.