Skip to content

Commit

Permalink
test: fix default ALLOW_BIND_ZIP_FILTER value for unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed Feb 20, 2024
1 parent a5f06fd commit ce7740f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def get_bool_env_var(key, default=False):
)

ALLOW_BIND_ZIP_FILTER = os.environ.get("ALLOW_BIND_ZIP_FILTER") or config.get(
"API_CONFIG", "ALLOW_BIND_ZIP_FILTER", fallback=None
"API_CONFIG", "ALLOW_BIND_ZIP_FILTER", fallback=False
)

ENABLE_TILES = os.environ.get("ENABLE_TILES") or config.get(
Expand Down

0 comments on commit ce7740f

Please sign in to comment.