summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2014-05-06 07:51:58 -0400
committerDavid Rothstein <drothstein@gmail.com>2014-05-06 07:51:58 -0400
commit5a84df030977e635a2457996d87e8a0c31b821ad (patch)
treefc5aafa95de03921e979187341e580eac855aa9d
parent709a0a5a33afb11f192d638d260c71e9069e10d7 (diff)
downloadbrdo-5a84df030977e635a2457996d87e8a0c31b821ad.tar.gz
brdo-5a84df030977e635a2457996d87e8a0c31b821ad.tar.bz2
Issue #952394 by xjm, webchick, sun, catch | yettyn: "No available releases found" - fetching update information exceeds timeout.
-rw-r--r--CHANGELOG.txt7
-rw-r--r--modules/update/update.module2
2 files changed, 8 insertions, 1 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 79ac7cb4f..84e2f4806 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,6 +1,13 @@
Drupal 7.28, xxxx-xx-xx (development version)
-----------------------
+- Increased the timeout used by the Update Manager module when it fetches data
+ from drupal.org (from 5 seconds to 30 seconds), to work around a problem
+ which causes incomplete information about security updates to be presented to
+ site administrators. This fix may lead to a performance slowdown on the
+ Update Manager administration pages, when installing Drupal distributions,
+ and (for sites that use the automated cron feature) on occasional page loads
+ by site visitors.
- Fixed the behavior of the token system's "[node:summary]" token when the body
field does not have a manual summary.
- Changed the behavior of db_query_temporary() so that it works on SELECT
diff --git a/modules/update/update.module b/modules/update/update.module
index d5728be3e..d1f0d856f 100644
--- a/modules/update/update.module
+++ b/modules/update/update.module
@@ -71,7 +71,7 @@ define('UPDATE_MAX_FETCH_ATTEMPTS', 2);
/**
* Maximum number of seconds to try fetching available update data at a time.
*/
-define('UPDATE_MAX_FETCH_TIME', 5);
+define('UPDATE_MAX_FETCH_TIME', 30);
/**
* Implements hook_help().