Merge lp:~julian-edwards/launchpad/ppa-quota-bug-413563 into lp:launchpad

Proposed by Julian Edwards
Status: Merged
Approved by: Michael Nelson
Approved revision: no longer in the source branch.
Merged at revision: not available
Proposed branch: lp:~julian-edwards/launchpad/ppa-quota-bug-413563
Merge into: lp:launchpad
Diff against target: 29 lines (+3/-3)
2 files modified
lib/lp/soyuz/doc/archive.txt (+2/-2)
lib/lp/soyuz/model/archive.py (+1/-1)
To merge this branch: bzr merge lp:~julian-edwards/launchpad/ppa-quota-bug-413563
Reviewer Review Type Date Requested Status
Michael Nelson (community) Approve
Review via email: mp+23471@code.launchpad.net

Description of the change

= Summary =

Trivial change to bump the default quota for PPAs to 2GiB.

To post a comment you must log in.
Revision history for this message
Michael Nelson (michael.nelson) wrote :

I'm assuming this has been agreed elsewhere :)

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'lib/lp/soyuz/doc/archive.txt'
2--- lib/lp/soyuz/doc/archive.txt 2010-04-08 02:35:06 +0000
3+++ lib/lp/soyuz/doc/archive.txt 2010-04-15 10:40:47 +0000
4@@ -1407,10 +1407,10 @@
5 ppa
6
7 We can take the opportunity to check if the default 'authorized_size'
8-corresponds to what we state in our policy, 1024 MiB:
9+corresponds to what we state in our policy, 2048 MiB:
10
11 >>> name16.archive.authorized_size
12- 1024
13+ 2048
14
15 An archive is also associated with a distribution. This can be found on
16 the distribution property. The default distribution is "ubuntu":
17
18=== modified file 'lib/lp/soyuz/model/archive.py'
19--- lib/lp/soyuz/model/archive.py 2010-04-12 08:29:02 +0000
20+++ lib/lp/soyuz/model/archive.py 2010-04-15 10:40:47 +0000
21@@ -164,7 +164,7 @@
22 dbName='require_virtualized', notNull=True, default=True)
23
24 authorized_size = IntCol(
25- dbName='authorized_size', notNull=False, default=1024)
26+ dbName='authorized_size', notNull=False, default=2048)
27
28 sources_cached = IntCol(
29 dbName='sources_cached', notNull=False, default=0)