[Buildbot-devel] [help] my buildslave status is always pending...

Mark Pauley mpauley at apple.com
Fri Jan 12 18:28:33 UTC 2007


Yes, from the snippet of code that contains that message  
(maybeStartBuild in builder.py):

def maybeStartBuild(self):
         log.msg("maybeStartBuild: %s %s" % (self.buildable,  
self.slaves))
         if not self.buildable:
             self.updateBigStatus()
             return # nothing to do
         # find the first idle slave
         for sb in self.slaves:
             if sb.state == IDLE:
                 break
         else:
             log.msg("%s: want to start build, but we don't have a  
remote"
                     % self)
             self.updateBigStatus()
             return

         # there is something to build, and there is a slave on which  
to build
         # it. Grab the oldest request, see if we can merge it with  
anything
         # else.
         req = self.buildable.pop(0)
         self.builder_status.removeBuildRequest(req.status)

...

it would appear that the self.slaves list is empty, meaning you  
effectively have no slaves for the builder "svn-hello", but somehow  
you're able to ping them.

_Mark

On Jan 11, 2007, at 9:00 PM, blue blue wrote:

>>> 2007/01/10 17:43 EST [HTTPChannel,0,127.0.0.1] <Builder 'svn-hello'
> at -1218320148>: want to start build, but we don't have a remote
>
> I  don't know the meaning of the log message?
> Don't have a remote means a remote buildslave? or something else?
>
> thanks again!:)
>
> Jerry
>
> -------------------------------------------------------------------------
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to  
> share your
> opinions on IT & business topics through brief surveys - and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> _______________________________________________
> Buildbot-devel mailing list
> Buildbot-devel at lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/buildbot-devel





More information about the devel mailing list