From 62c46c80e7e88b3e3ab050203c035b80a4d29c3a Mon Sep 17 00:00:00 2001 From: Daniel Friedman Date: Wed, 8 Oct 2014 17:01:38 -0400 Subject: [PATCH] Bump the report downloads poll interval to 20 seconds TNL-565 --- lms/static/coffee/src/instructor_dashboard/data_download.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/static/coffee/src/instructor_dashboard/data_download.coffee b/lms/static/coffee/src/instructor_dashboard/data_download.coffee index 4931e35c83..e242c4860c 100644 --- a/lms/static/coffee/src/instructor_dashboard/data_download.coffee +++ b/lms/static/coffee/src/instructor_dashboard/data_download.coffee @@ -153,7 +153,7 @@ class ReportDownloads @$report_downloads_table = @$section.find ".report-downloads-table" - POLL_INTERVAL = 1000 * 60 * 5 # 5 minutes in ms + POLL_INTERVAL = 20000 # 20 seconds, just like the "pending instructor tasks" table @downloads_poller = new window.InstructorDashboard.util.IntervalManager( POLL_INTERVAL, => @reload_report_downloads() )