(self, name)
| 500 | return True |
| 501 | |
| 502 | def is_renewing(self, name): |
| 503 | stat = self.get_certificate_status(name) |
| 504 | return 'renewal' in stat |
| 505 | |
| 506 | def await_renewal(self, names, timeout=60): |
| 507 | try_until = time.time() + timeout |
nothing calls this directly
no test coverage detected