summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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().