Skip to content

Commit 16630a9

Browse files
committed
Fix
1 parent b906909 commit 16630a9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/crawlee/request_loaders/_sitemap_request_loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ async def _load_sitemaps(self) -> None:
230230
continue
231231
state.in_progress_sitemap_url = sitemap_url
232232

233-
parse_options = ParseSitemapOptions(max_depth=0, emit_nested_sitemaps=True)
233+
parse_options = ParseSitemapOptions(max_depth=0, emit_nested_sitemaps=True, sitemap_retries=3)
234234

235235
async for item in parse_sitemap(
236236
[SitemapSource(type='url', url=sitemap_url)],

0 commit comments

Comments
 (0)