PlayWrightCrawler new request results are bleeding into old requests. RequestQueue issue?
crawl functionsetInterval calls this functionBackground: I'm calling the fetchImagesUrls from a setInterval function simulating a 'cron job'. I purposely make setinterval pick up Job#1 (details are fetched from a DB) then when the Job#1 starts, I make Job#2 be available for processing.Behavior: Now Job#1 and Job#2 are running from two different calls, however, the results are getting mixed into each other. I've tried useState() and my own callback (as shown here) - is there a way to make new calls be isolated to their own results set?
I understand I might be missing something regarding JS fundamentals, but some guidance would be much appreciated. Thanks!
