Skip to content

Commit

Permalink
Set default USE_HTTPS behaviour for Marklogic back to False
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksonj04 committed Dec 19, 2024
1 parent a142a87 commit 5e5d074
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ds-caselaw-ingester/lambda_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
MARKLOGIC_HOST: str = os.environ["MARKLOGIC_HOST"]
MARKLOGIC_USER: str = os.environ["MARKLOGIC_USER"]
MARKLOGIC_PASSWORD: str = os.environ["MARKLOGIC_PASSWORD"]
MARKLOGIC_USE_HTTPS: bool = bool(os.environ["MARKLOGIC_USE_HTTPS"])
MARKLOGIC_USE_HTTPS: bool = bool(os.getenv("MARKLOGIC_USE_HTTPS", default=False))

AWS_BUCKET_NAME: str = os.environ["AWS_BUCKET_NAME"]

Expand Down

0 comments on commit 5e5d074

Please sign in to comment.