about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--doc/manual/release-notes.xml2
-rw-r--r--scripts/download-from-binary-cache.pl.in2
2 files changed, 3 insertions, 1 deletions
diff --git a/doc/manual/release-notes.xml b/doc/manual/release-notes.xml
index 456e3460507b..c58a84eddb67 100644
--- a/doc/manual/release-notes.xml
+++ b/doc/manual/release-notes.xml
@@ -8,7 +8,7 @@
 
 <!--==================================================================-->
 
-<section xml:id="ssec-relnotes-1.2"><title>Release 1.2 (December 5, 2012)</title>
+<section xml:id="ssec-relnotes-1.2"><title>Release 1.2 (December 6, 2012)</title>
 
 <para>This release has the following improvements and changes:</para>
 
diff --git a/scripts/download-from-binary-cache.pl.in b/scripts/download-from-binary-cache.pl.in
index 20d60e06e63e..b822466719f2 100644
--- a/scripts/download-from-binary-cache.pl.in
+++ b/scripts/download-from-binary-cache.pl.in
@@ -112,6 +112,8 @@ sub initCache {
     $dbh->{RaiseError} = 1;
     $dbh->{PrintError} = 0;
 
+    $dbh->sqlite_busy_timeout(60 * 60 * 1000);
+
     $dbh->do("pragma synchronous = off"); # we can always reproduce the cache
     $dbh->do("pragma journal_mode = truncate");