Replies: 1 comment
-
This might be caused by both crawlers sharing the same storage. You can tell Crawlee to use different storage backends with each crawler by supplying the optional second constructor parameter. const crawler = new CheerioCrawler(
{
...crawlerOptions
},
+ new Configuration({
+ persistStorage: false,
+ })
); In the
Let us know whether this helped. Cheers! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Which package is this bug report for? If unsure which one to select, leave blank
@crawlee/playwright (PlaywrightCrawler)
Issue description
When multiple 'PlaywrightCrawlers' are enabled, if one task ends, it will cause the entire process to end the task
Code sample
Package version
3.10.5
Node.js version
v20.13.1
Operating system
windows
Apify platform
I have tested this on the
next
releaseNo response
Other context
I think it may be caused by the
crawlee/packages/basic-crawler/src/internals/basic-crawler.ts
Line 903 in 8015b2e
Beta Was this translation helpful? Give feedback.
All reactions