[Buildbot-commits] buildbot/buildbot/test test_config.py, 1.48, 1.49
Brian Warner
warner at users.sourceforge.net
Wed Aug 1 22:09:13 UTC 2007
Update of /cvsroot/buildbot/buildbot/buildbot/test
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv29718/buildbot/test
Modified Files:
test_config.py
Log Message:
[project @ web-refactoring: WebStatus is no longer a ComparableMixin, therefore it will be rebuilt upon each reconfig]
Original author: warner at lothar.com
Date: 2007-08-01 00:47:35+00:00
Index: test_config.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/test/test_config.py,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -d -r1.48 -r1.49
--- test_config.py 1 Aug 2007 22:09:05 -0000 1.48
+++ test_config.py 1 Aug 2007 22:09:11 -0000 1.49
@@ -875,7 +875,9 @@
self.failUnlessIdentical(self.p, ports[1],
"web port was changed even though "
"configuration was not")
- d.addCallback(_check2)
+ # WebStatus is no longer a ComparableMixin, so it will be
+ # rebuilt on each reconfig
+ #d.addCallback(_check2)
d.addCallback(lambda res: self.buildmaster.loadConfig(webCfg2))
# changes port to 9981
@@ -924,7 +926,9 @@
self.failUnlessIdentical(self.f, newf,
"web factory was changed even though "
"configuration was not")
- d.addCallback(_check2)
+ # WebStatus is no longer a ComparableMixin, so it will be
+ # rebuilt on each reconfig
+ #d.addCallback(_check2)
d.addCallback(lambda res: self.buildmaster.loadConfig(webNameCfg2))
def _check3(res):
More information about the Commits
mailing list