From 4d00e665f1ed8c050af2b7d7f70de07c74935a8e Mon Sep 17 00:00:00 2001 From: amercader Date: Fri, 29 Jun 2012 11:32:18 +0100 Subject: [PATCH] [cli] Speed up run command --- ckanext/harvest/logic/action/update.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ckanext/harvest/logic/action/update.py b/ckanext/harvest/logic/action/update.py index a2be3a8..49536cb 100644 --- a/ckanext/harvest/logic/action/update.py +++ b/ckanext/harvest/logic/action/update.py @@ -133,6 +133,7 @@ def harvest_jobs_run(context,data_dict): publisher = get_gather_publisher() sent_jobs = [] for job in jobs: + context['detailed'] = False source = harvest_source_show(context,{'id':job['source']}) if source['active']: publisher.send({'harvest_job_id': job['id']})