From 150e229878bf935ecd069113e205f4fa755d9914 Mon Sep 17 00:00:00 2001 From: Andrew Haith Date: Fri, 15 Jul 2016 15:58:04 +0100 Subject: [PATCH] Increased timeout for courses import data fetch --- moxie_courses/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moxie_courses/tasks.py b/moxie_courses/tasks.py index b6c0932..695e2c8 100644 --- a/moxie_courses/tasks.py +++ b/moxie_courses/tasks.py @@ -16,5 +16,5 @@ def import_xcri_ox(force_update=False): url = app.config['XCRI_IMPORT_URL'] with app.blueprint_context(BLUEPRINT_NAME): xcri = get_resource(url, force_update) - xcri_importer = XcriOxImporter(searcher, xcri) + xcri_importer = XcriOxImporter(searcher, xcri, timeout=600) xcri_importer.run()