-
Notifications
You must be signed in to change notification settings - Fork 318
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Crawler doesn't respect configuration
argument
#539
Comments
Hello, and thanks for the reproduction! It seems that the problem is here: It looks like Also, we have a test for this - https://github.com/apify/crawlee-python/blob/master/tests/unit/basic_crawler/test_basic_crawler.py#L630-L639 - which probably fails because we're looking inside a different storage directory than the global one. |
Consider this sample program:
The
configuration
argument given toParselCrawler
is not respected, during the run it creates the./storage
directory and persist all the (meta)data. I have to work around it by overriding the global configuration likes this:The text was updated successfully, but these errors were encountered: