We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7bfa0be + 9c630fa commit 4ccfbc5Copy full SHA for 4ccfbc5
backend/config.py
@@ -111,7 +111,8 @@ def assemble_db_connection(
111
# Logging settings
112
LOG_LEVEL: int = os.getenv("TM_LOG_LEVEL", logging.DEBUG)
113
LOG_DIR: str = os.getenv("TM_LOG_DIR", "/home/appuser/logs")
114
- USE_SENTRY: bool = os.getenv("USE_SENTRY", True)
+ USE_SENTRY: bool = os.getenv("USE_SENTRY", "false").lower() == "true"
115
+
116
# Mapper Level values represent number of OSM changesets
117
MAPPER_LEVEL_INTERMEDIATE: int = int(os.getenv("TM_MAPPER_LEVEL_INTERMEDIATE", 250))
118
MAPPER_LEVEL_ADVANCED: int = int(os.getenv("TM_MAPPER_LEVEL_ADVANCED", 500))
0 commit comments