From aac2f17db303c16f26cfc17efd74de1299b321f4 Mon Sep 17 00:00:00 2001 From: tnagorra Date: Mon, 19 Jan 2026 10:25:40 +0545 Subject: [PATCH 1/2] fix(custom-options): update offset option - add description - update to organge color - update to flag icon --- apps/project/custom_options.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/project/custom_options.py b/apps/project/custom_options.py index ff405728..050176fd 100644 --- a/apps/project/custom_options.py +++ b/apps/project/custom_options.py @@ -39,10 +39,10 @@ class CustomOptionDefaults: }, { "title": "Offset", - "icon": IconEnum.ALERT_OUTLINE, + "icon": IconEnum.FLAG_OUTLINE, "value": 3, - "description": "", - "icon_color": "#9e9e9e", + "description": "building outline is correct, but not aligned to the imagery", + "icon_color": "#ff9800", }, ] From b2f83d857c6e73988bc92dfcc9eb8c69a2e1a954 Mon Sep 17 00:00:00 2001 From: tnagorra Date: Mon, 19 Jan 2026 12:37:02 +0545 Subject: [PATCH 2/2] fix(validate): increase connection timeout to 10s --- project_types/validate/api_calls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project_types/validate/api_calls.py b/project_types/validate/api_calls.py index 0c5bebee..6b4f73c6 100644 --- a/project_types/validate/api_calls.py +++ b/project_types/validate/api_calls.py @@ -27,7 +27,7 @@ def remove_troublesome_chars(string: str | None): return string -def retry_get(url: str, retries: int | None = 3, timeout: int | None = 4, to_osmcha: bool = False): +def retry_get(url: str, retries: int | None = 3, timeout: int | None = 10, to_osmcha: bool = False): """Retry a query for a variable amount of tries.""" retry = Retry(total=retries) with requests.Session() as session: