pyspider
pyspider copied to clipboard
Success but shows FETCH_ERROR
- pyspider version: 0.3.10
- Operating system: mac os 10.14.6
- Start up command: pyspider all
Expected behavior
No FETCH_ERROR, No pause
Actual behavior
The status become "Pause".
I click "Active Tasks" and it shows below.

It shows FETCH_ERROR. But when I click one result, it shows "Success".

How to reproduce
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
# Created on 2019-09-26 09:49:19
# Project: qunar
from pyspider.libs.base_handler import *
class Handler(BaseHandler):
crawl_config = {
}
@every(minutes=24 * 60)
def on_start(self):
self.crawl('http://travel.qunar.com/travelbook/list.htm', callback=self.index_page)
@config(age=10 * 24 * 60 * 60)
def index_page(self, response):
for each in response.doc('li > .tit > a').items():
self.crawl(each.attr.href, callback=self.detail_page, fetch_type='js')
next = response.doc('.next').attr.href
self.crawl(next, callback=self.index_page)
@config(priority=2)
def detail_page(self, response):
return {
"url": response.url,
"title": response.doc('#booktitle').text(),
"date": response.doc('.when .data').text(),
"day": response.doc('.howlong .data').text(),
"who": response.doc('.who .data').text(),
"text": response.doc('b_panel_schedule').text(),
'image': response.doc('.cover_img').attr.src,
}