~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/buildmaster/model/buildfarmjobbehavior.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-30 10:09:30 UTC
  • mfrom: (14606.2.8 apocalibrarian)
  • Revision ID: launchpad@pqm.canonical.com-20111230100930-kp3e0l6wakissewm
[r=wgrant][no-qa] Move canonical.librarian to
        lp.services.librarian(server).

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
import xmlrpclib
18
18
 
19
19
from twisted.internet import defer
20
 
 
21
20
from zope.component import getUtility
22
21
from zope.interface import implements
23
22
from zope.security.proxy import removeSecurityProxy
24
23
 
25
 
from canonical.librarian.interfaces import ILibrarianClient
26
24
from lp.buildmaster.interfaces.builder import (
27
25
    BuildSlaveFailure,
28
26
    CorruptBuildCookie,
33
31
    )
34
32
from lp.services import encoding
35
33
from lp.services.job.interfaces.job import JobStatus
 
34
from lp.services.librarian.interfaces.client import ILibrarianClient
36
35
 
37
36
 
38
37
class BuildFarmJobBehaviorBase: