Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 29, 2021
1 parent 306d534 commit f2e4ea9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,9 +285,13 @@
PELICAN_FRONTEND_URL = os.getenv("PELICAN_FRONTEND_URL")

# WARNING: If you change the production default, update `Dockerfile_django` and `docker-compose.yaml` to match.
EXPORTER_MOUNT_DESTINATION = os.getenv("EXPORTER_MOUNT_DESTINATION", "/data/exporter" if production else BASE_DIR / "data" / "exporter")
EXPORTER_MOUNT_DESTINATION = os.getenv(
"EXPORTER_MOUNT_DESTINATION", "/data/exporter" if production else BASE_DIR / "data" / "exporter"
)
# WARNING: The production default needs to sync with Spoonbill's configuration.
EXPORTER_MOUNT_SOURCE = os.getenv("EXPORTER_MOUNT_DESTINATION", "/data/storage/exporter_dumps" if production else BASE_DIR / "data" / "exporter")
EXPORTER_MOUNT_SOURCE = os.getenv(
"EXPORTER_MOUNT_DESTINATION", "/data/storage/exporter_dumps" if production else BASE_DIR / "data" / "exporter"
)
# The batch size of compiled releases to extract from Kingfisher Process.
EXPORTER_PAGE_SIZE = 10000

Expand Down

0 comments on commit f2e4ea9

Please sign in to comment.