(self)
| 297 | return outTime |
| 298 | |
| 299 | def updateTLSContextFactory(self): |
| 300 | self._allowTLSconnections(self.certPath) |
| 301 | self._TLSattempts += 1 |
| 302 | if self._TLSattempts < constants.TLS_CERT_ROTATION_MAX_RETRIES: |
| 303 | self.serverAcceptsTLS = True |
| 304 | |
| 305 | |
| 306 | class StatsRecorder(object): |
no test coverage detected