Hello,
two questions.
Is there a way to call this.isFinishedFunction so it calls the original function but also just add another web_crawler_queue isFinished on top of it? the uncommented out function I tried, worked somewhat, but, after a long running web_crawler_queue finished, it just kept giving me a stalled error, and, this crawler that this function belongs to never finished.
autoscaledPoolOptions: {
isFinishedFunction: async () => {
const web_crawler_queue = await RequestQueue.open(place_id)
// return this.isFinishedFunction() && await web_crawler_queue.isFinished()
return await request_queue.isFinished() && await web_crawler_queue.isFinished()
}
},