summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2019-03-01 08:15:59 +0000
committerGo MAEDA <maeda@farend.jp>2019-03-01 08:15:59 +0000
commit917f9d9442a90a2734feac41e1ec8c76bc339227 (patch)
tree8e98238dcf91d92e5562270a692083507f4ab233
parent40c894ff03d44c07cd3b7de7e164789082f7bff1 (diff)
downloadredmine-917f9d9442a90a2734feac41e1ec8c76bc339227.tar.gz
redmine-917f9d9442a90a2734feac41e1ec8c76bc339227.zip
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
-rw-r--r--app/views/admin/plugins.html.erb2
1 files changed, 1 insertions, 1 deletions
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();
},