How do I delay requests with HttpCrawler?
I tried adding a delay with
setTimeout and Promise like this and awaiting on it(this delay happens inside my requestHandler)
But when it finishes I get this error on next request
RequestError: read ECONNRESETI am not well-versed with networking, but I think this error is related to it. My understanding is that Crawlee tries to use the same connection that it opened ~15 minutes ago but that connection is closed from the API's side, thus this error.
Any help or suggestions on how to achieve this would be appreciated!
