Rename BasePipelineManager to PipelineManager

It feels more natrual to talk about DependentPipelineManager being a
PipelineManager in the internals doc. It's not used many places, so
just go ahead and change it.

Change-Id: Ie6aa4a27c2fec9469e266a0113447e3102985f61
This commit is contained in:
Monty Taylor
2016-07-29 12:04:21 -07:00
parent 82dfd41fee
commit c75478cc0f
4 changed files with 8 additions and 8 deletions

View File

@@ -13,10 +13,10 @@
import logging
from zuul import model
from zuul.manager import BasePipelineManager, DynamicChangeQueueContextManager
from zuul.manager import PipelineManager, DynamicChangeQueueContextManager
class IndependentPipelineManager(BasePipelineManager):
class IndependentPipelineManager(PipelineManager):
"""PipelineManager that puts every Change into its own ChangeQueue."""
log = logging.getLogger("zuul.IndependentPipelineManager")