Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apps/project/custom_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
},
]

Expand Down
2 changes: 1 addition & 1 deletion project_types/validate/api_calls.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading