Skip to content

Commit

Permalink
config: remove unused vars (data store)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasschaub committed Oct 11, 2023
1 parent 17a7b37 commit f8f4746
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions sketch_map_tool/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ def load_config_default() -> Dict[str, str]:
"user-agent": "sketch-map-tool",
"broker-url": "redis://localhost:6379",
"result-backend": "db+postgresql://smt:smt@localhost:5432",
"data-store": "redis://localhost:6379",
"wms-url": "https://maps.heigit.org/osm-carto/service?SERVICE=WMS&VERSION=1.1.1",
"wms-layers": "heigit:osm-carto@2xx",
"wms-read-timeout": 600,
Expand All @@ -48,7 +47,6 @@ def load_config_from_env() -> Dict[str, str]:
"user-agent": os.getenv("SMT-USER-AGENT"),
"broker-url": os.getenv("SMT-BROKER-URL"),
"result-backend": os.getenv("SMT-RESULT-BACKEND"),
"data-store": os.getenv("SMT-DATA-STORE"),
"wms-url": os.getenv("SMT-WMS-URL"),
"wms-layers": os.getenv("SMT-WMS-LAYERS"),
"wms-read-timeout": os.getenv("SMT-WMS-READ-TIMEOUT"),
Expand Down
1 change: 0 additions & 1 deletion tests/unit/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ def config_keys():
"user-agent",
"broker-url",
"result-backend",
"data-store",
"wms-url",
"wms-layers",
"wms-read-timeout",
Expand Down

0 comments on commit f8f4746

Please sign in to comment.