Skip to content

Commit

Permalink
Merge pull request #239 from nationalarchives/fix/marklogic-use-https…
Browse files Browse the repository at this point in the history
…-default

Set default USE_HTTPS behaviour for Marklogic back to False
  • Loading branch information
jacksonj04 authored Dec 19, 2024
2 parents a142a87 + 5e5d074 commit d101e77
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 d101e77

Please sign in to comment.