~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/codehosting/puller/scheduler.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2009-06-15 07:06:58 UTC
  • mfrom: (7675.194.55 branch-puller-scheduling)
  • Revision ID: launchpad@pqm.canonical.com-20090615070658-7we38vjrwd0totix
[r=mwhudson][ui=none] Add helpers for managing concurrent tasks that
        are acquired from an external service.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2006-2008 Canonical Ltd.  All rights reserved.
 
1
# Copyright 2006-2009 Canonical Ltd.  All rights reserved.
2
2
# pylint: disable-msg=W0702
3
3
 
4
4
__metaclass__ = type
345
345
        """Launch a child worker and mirror a branch, handling errors.
346
346
 
347
347
        This is the main method to call to mirror a branch.
 
348
 
 
349
        :return: A Deferred that fires when the mirroring job is completed,
 
350
            one way or the other. It will never fire with a failure. The value
 
351
            of the Deferred itself is uninteresting (probably None).
348
352
        """
349
353
        deferred = self.mirror()
350
354
        deferred.addErrback(self.unexpectedError)