~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/webapp/pgsession.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-06 12:11:50 UTC
  • mfrom: (14625.2.7 gina-dsc-binaries)
  • Revision ID: launchpad@pqm.canonical.com-20120106121150-e0bucmb5qeyytnn9
[r=wgrant][bug=911943] Fix SourcePackageReleaseDscBinariesUpdater:
        round chunk_size to int (and document this issue).

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
__metaclass__ = type
7
7
 
 
8
import cPickle as pickle
8
9
import time
9
10
from UserDict import DictMixin
10
11
 
11
 
import cPickle as pickle
12
12
from storm.zope.interfaces import IZStorm
13
13
from zope.app.security.interfaces import IUnauthenticatedPrincipal
14
14
from zope.component import getUtility
133
133
                    'should not happen.  The code setting the session data '
134
134
                    'should be reviewed; and failing that, the cookie '
135
135
                    'timeout after logout (set in '
136
 
                    'canonoical.launchpad.webapp.login) should perhaps be '
 
136
                    'webapp.login) should perhaps be '
137
137
                    'increased a bit, if a ten minute fudge factor is not '
138
138
                    'enough to handle the vast majority of computers with '
139
139
                    'not-very-accurate system clocks.  In an exceptional '