From 917f9d9442a90a2734feac41e1ec8c76bc339227 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Fri, 1 Mar 2019 08:15:59 +0000 Subject: [PATCH] Timeout for "Check for updates" on Plugins page is too short (#30939). Contributed by Eric Gauthier. git-svn-id: http://svn.redmine.org/redmine/trunk@17909 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/admin/plugins.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/admin/plugins.html.erb b/app/views/admin/plugins.html.erb index e1a1b2a64..3d88c90d0 100644 --- a/app/views/admin/plugins.html.erb +++ b/app/views/admin/plugins.html.erb @@ -29,7 +29,7 @@ $(document).ready(function(){ dataType: "jsonp", url: "https://www.redmine.org/plugins/check_updates", data: <%= raw_json plugin_data_for_updates(@plugins) %>, - timeout: 3000, + timeout: 10000, beforeSend: function(){ $('#ajax-indicator').show(); },