diff --git a/doc/manual/release-notes.xml b/doc/manual/release-notes.xml index 456e346050..c58a84eddb 100644 --- a/doc/manual/release-notes.xml +++ b/doc/manual/release-notes.xml @@ -8,7 +8,7 @@ -
Release 1.2 (December 5, 2012) +
Release 1.2 (December 6, 2012) This release has the following improvements and changes: diff --git a/scripts/download-from-binary-cache.pl.in b/scripts/download-from-binary-cache.pl.in index 20d60e06e6..b822466719 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");