A scraper that I am developing, scrapes a SPA with infinite scrolling. This works fine, but after 300 seconds, I get a
WARN
, which spawns another playwright instance.
This probably happens since I only handle 1 request (I do not add anything to the RequestQueue), from which I just have a while until
finished condition
is met.
[crawlee.storages._request_queue] WARN The request queue seems to be stuck for 300.0s, resetting internal state. ({"queue_head_ids_pending": 0, "in_progress": ["tEyKIytjmqjtRvA"]})
What is a clean way to stop this from happening?