I'm trying to enable mongodb in my spider in scrapinghub platform. For this I have to enable the extension via "EXTENSIONS" setting in the UI. But, while running the spider, I get the below error:
ValueError: Some paths in "{'scrapy.contrib.feedexport.FeedExporter': None}" convert to the same object, please update your settings
And my setting is as below:
EXTENSIONS = {'scrapy.contrib.feedexport.FeedExporter': None}
If I remove this setting, I get below error:
exceptions.ValueError: Some paths in "{'scrapy_mongodb.MongoDBPipeline': 300}" convert to the same object, please update your settings
And the setting is as below:
ITEM_PIPELINES = {'scrapy_mongodb.MongoDBPipeline': 300}
The worrying this is that both the settings work properly in local scrapyd.