[Buildbot-commits] buildbot/buildbot scheduler.py,1.24,1.25
Brian Warner
warner at users.sourceforge.net
Tue Jan 23 21:04:34 UTC 2007
- Previous message (by thread): [Buildbot-commits] buildbot ChangeLog,1.826,1.827
- Next message (by thread): [Buildbot-commits] buildbot/buildbot/changes mail.py, 1.23, 1.24 maildir.py, 1.8, 1.9 maildirgtk.py, 1.1, NONE maildirtwisted.py, 1.3, NONE
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/buildbot/buildbot/buildbot
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15423/buildbot
Modified Files:
scheduler.py
Log Message:
[project @ clean up maildir usage, remove a use of reactor.iterate from tests]
Original author: warner at lothar.com
Date: 2007-01-23 21:02:10
Index: scheduler.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/scheduler.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- scheduler.py 11 Dec 2006 09:06:34 -0000 1.24
+++ scheduler.py 23 Jan 2007 21:04:32 -0000 1.25
@@ -13,7 +13,7 @@
from buildbot import interfaces, buildset, util, pbutil
from buildbot.status import builder
from buildbot.sourcestamp import SourceStamp
-from buildbot.changes import maildirtwisted
+from buildbot.changes.maildir import MaildirService
class BaseScheduler(service.MultiService, util.ComparableMixin):
@@ -550,7 +550,7 @@
def __init__(self, name, builderNames, jobdir):
TryBase.__init__(self, name, builderNames)
self.jobdir = jobdir
- self.watcher = maildirtwisted.MaildirService()
+ self.watcher = MaildirService()
self.watcher.setServiceParent(self)
def setServiceParent(self, parent):
- Previous message (by thread): [Buildbot-commits] buildbot ChangeLog,1.826,1.827
- Next message (by thread): [Buildbot-commits] buildbot/buildbot/changes mail.py, 1.23, 1.24 maildir.py, 1.8, 1.9 maildirgtk.py, 1.1, NONE maildirtwisted.py, 1.3, NONE
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Commits
mailing list