fix: replace bare raise with return False in _restore_from_checkpoint (#196)

This commit is contained in:
Karim shoair
2026-03-17 17:45:52 +02:00
committed by GitHub
+1 -1
View File
@@ -205,7 +205,7 @@ class CrawlerEngine:
Returns True if successfully restored, False otherwise.
"""
if not self._checkpoint_system_enabled:
raise
return False
data = await self._checkpoint_manager.load()
if data is None: