Skip to content

Commit

Permalink
actually include the changesource connectors
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Aug 2, 2013
1 parent 03572e5 commit ca9a534
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions master/buildbot/data/connector.py
Expand Up @@ -41,6 +41,7 @@ class DataConnector(service.Service):
'buildbot.data.logchunks',
'buildbot.data.buildsets',
'buildbot.data.changes',
'buildbot.data.changesources',
'buildbot.data.masters',
'buildbot.data.sourcestamps',
'buildbot.data.schedulers',
Expand Down
3 changes: 2 additions & 1 deletion master/buildbot/db/connector.py
Expand Up @@ -19,7 +19,7 @@
from twisted.application import internet, service
from buildbot import config
from buildbot.db import enginestrategy, exceptions
from buildbot.db import pool, model, changes, schedulers, sourcestamps
from buildbot.db import pool, model, changes, changesources, schedulers, sourcestamps
from buildbot.db import state, buildsets, buildrequests
from buildbot.db import builds, buildslaves, users, masters, builders

Expand Down Expand Up @@ -61,6 +61,7 @@ def __init__(self, master, basedir):
self.pool = None # set up in reconfigService
self.model = model.Model(self)
self.changes = changes.ChangesConnectorComponent(self)
self.changesources = changesources.ChangeSourcesConnectorComponent(self)
self.schedulers = schedulers.SchedulersConnectorComponent(self)
self.sourcestamps = sourcestamps.SourceStampsConnectorComponent(self)
self.buildsets = buildsets.BuildsetsConnectorComponent(self)
Expand Down

0 comments on commit ca9a534

Please sign in to comment.