Skip to content

Commit

Permalink
Validate SSL certs by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Jay committed Aug 5, 2024
1 parent a7008a0 commit 4032578
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kombu/asynchronous/aws/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def getrequest(self):
headers = Headers(self.headers)
return self.Request(self.path, method=self.method, headers=headers,
body=self.body, connect_timeout=self.timeout,
request_timeout=self.timeout, validate_cert=False)
request_timeout=self.timeout, validate_cert=True)

def getresponse(self, callback=None):
request = self.getrequest()
Expand Down

0 comments on commit 4032578

Please sign in to comment.