mirror of
https://github.com/certbot/certbot.git
synced 2026-06-07 07:42:08 -04:00
Call restart() from superclass from OCSPPrefetchMixin
This commit is contained in:
parent
dfa8b2a2cd
commit
fe0a985228
1 changed files with 4 additions and 2 deletions
|
|
@ -263,8 +263,10 @@ class OCSPPrefetchMixin(object):
|
|||
self._ocsp_prefetch_backup_db()
|
||||
|
||||
try:
|
||||
self._reload()
|
||||
except errors.MisconfigurationError:
|
||||
# Ignored because of issues with multiple class inheritance method
|
||||
# resolution https://github.com/python/mypy/issues/4335
|
||||
super(OCSPPrefetchMixin, self).restart() # type: ignore
|
||||
except errors.MisconfigurationError:
|
||||
self._ocsp_prefetch_restore_db()
|
||||
raise
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue