Apify and Crawlee Official Forum

Updated 3 months ago

deleting request queues

how to delete a request queue once the crawling is finished and how can you tell when the crawling is finished to delete the request queue
P
1 comment
You should be able to drop the requestQueue on the end of the run:

Plain Text
await Actor.init();

const rq = await RequestQueue.open();

// ...

await rq.drop();

await Actor.exit();
Add a reply
Sign up and join the conversation on Discord