Skip to content

Commit

Permalink
Fixup some comments in ChangeManager
Browse files Browse the repository at this point in the history
  • Loading branch information
krajaratnam committed Feb 18, 2010
1 parent 20e1bf1 commit 461a3f1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions buildbot/changes/manager.py
Expand Up @@ -45,7 +45,7 @@
class ChangeManager(service.MultiService):

"""This is the master-side service which receives file change
notifications from CVS. It keeps a log of these changes, enough to
notifications from a VCS. It keeps a log of these changes, enough to
provide for the HTML waterfall display, and to tell
temporarily-disconnected bots what they missed while they were
offline.
Expand All @@ -55,13 +55,13 @@ class ChangeManager(service.MultiService):
which provides a remote method called 'addChange', which should be
called with a dict that has keys 'filename' and 'comments'.
The second is a list of objects derived from the ChangeSource class.
These are added with .addSource(), which also sets the .changemaster
attribute in the source to point at the ChangeMaster. When the
application begins, these will be started with .start() . At shutdown
time, they will be terminated with .stop() . They must be persistable.
They are expected to call self.changemaster.addChange() with Change
objects.
The second is a list of objects derived from the
L{buildbot.changes.base.ChangeSource} class. These are added with
.addSource(), which also sets the .changemaster attribute in the source
to point at the ChangeMaster. When the application begins, these will
be started with .start() . At shutdown time, they will be terminated
with .stop() . They must be persistable. They are expected to call
self.changemaster.addChange() with Change objects.
There are several different variants of the second type of source:
Expand Down

0 comments on commit 461a3f1

Please sign in to comment.