Exception raised file_path function in Scrapy Pipeline not showed

85 Views Asked by At

So, I put a simple exception in an image pipeline like this:

class MyImagesPipeline(ImagesPipeline):

    #Name download version
    def file_path(self, request, response=None, info=None):
        raise Exception()
        print("It get's into filepath")

It should have shown an error, but it just makes the whole pipeline doesn't work. Even the print does not get printed. How can I trace that error?

I can trace it in other functions but not in file_path.

0

There are 0 best solutions below