예제 #1
0
파일: pb.py 프로젝트: iskradelta/buildbot
 def clientConnectionLost(self, connector, reason):
     log.msg("Lost connection to %s:%s" % (self.buildmaster_host, self.port))
     self.connector = None
     self.stopTimers()
     self.perspective = None
     ReconnectingPBClientFactory.clientConnectionLost(self,
                                                      connector, reason)
예제 #2
0
파일: pb.py 프로젝트: iskradelta/buildbot
 def clientConnectionFailed(self, connector, reason):
     self.connector = None
     why = reason
     if reason.check(error.ConnectionRefusedError):
         why = "Connection Refused"
     log.msg("Connection to %s:%s failed: %s" % (self.buildmaster_host, self.port, why))
     ReconnectingPBClientFactory.clientConnectionFailed(self,
                                                        connector, reason)
예제 #3
0
파일: pb.py 프로젝트: iskradelta/buildbot
 def __init__(self, buildmaster_host, port, keepaliveInterval, maxDelay):
     ReconnectingPBClientFactory.__init__(self)
     self.maxDelay = maxDelay
     self.keepaliveInterval = keepaliveInterval
     # NOTE: this class does not actually make the TCP connections - this information is
     # only here to print useful error messages
     self.buildmaster_host = buildmaster_host
     self.port = port
예제 #4
0
파일: pb.py 프로젝트: iskradelta/buildbot
 def gotPerspective(self, perspective):
     log.msg("Connected to %s:%s; worker is ready" % (self.buildmaster_host, self.port))
     ReconnectingPBClientFactory.gotPerspective(self, perspective)
     self.perspective = perspective
     try:
         perspective.broker.transport.setTcpKeepAlive(1)
     except Exception:
         log.msg("unable to set SO_KEEPALIVE")
         if not self.keepaliveInterval:
             self.keepaliveInterval = 10 * 60
     self.activity()
     if self.keepaliveInterval:
         log.msg("sending application-level keepalives every %d seconds"
                 % self.keepaliveInterval)
         self.startTimers()
예제 #5
0
파일: pb.py 프로젝트: iskradelta/buildbot
 def startedConnecting(self, connector):
     log.msg("Connecting to %s:%s" % (self.buildmaster_host, self.port))
     ReconnectingPBClientFactory.startedConnecting(self, connector)
     self.connector = connector
예제 #6
0
파일: pb.py 프로젝트: iskradelta/buildbot
 def stopFactory(self):
     ReconnectingPBClientFactory.stopFactory(self)
     self.stopTimers()