mirror of
https://framagit.org/framasoft/framaspace/argos.git
synced 2025-04-28 18:02:41 +02:00
Merge branch 'fix-ssl-bug' into 'main'
🐛 — Fix SSL check cert
See merge request framasoft/framaspace/argos!3
This commit is contained in:
commit
429351054d
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ class SSLCertificateExpiration(BaseCheck):
|
|||
|
||||
async def run(self):
|
||||
"""Returns the number of days in which the certificate will expire."""
|
||||
response = await self.http_client.head(self.task.url)
|
||||
response = await self.http_client.get(self.task.url)
|
||||
if response.is_error:
|
||||
raise
|
||||
|
||||
|
|
Loading…
Reference in a new issue