scrapy / scrapyd

A service daemon to run Scrapy spiders
https://scrapyd.readthedocs.io/en/stable/
BSD 3-Clause "New" or "Revised" License
2.97k stars 569 forks source link

Scrapyd - webservice.py - IListJobs - running jobs "start_time" appears in the original code but not in the release package #96

Closed zv86 closed 8 years ago

zv86 commented 9 years ago

Inside webservice.py -> lListJobs function: In the newest code in the repository:

running = [{"id": s.job, "spider": s.spider,
            "start_time": s.start_time.isoformat(' ')} for s in spiders if s.project == project]
Inside the latest release package (1.0.1 when checked):
running = [{"id": s.job, "spider": s.spider} for s in spiders if s.project == project] 
Digenis commented 8 years ago

Added in ba434c3c6b995f495ff33bc2d870d4562912bb8c Released in 1.1.0