Skip to content

Commit

Permalink
Disable insecure=True in Openstack
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardobranco777 committed Aug 31, 2023
1 parent d3097af commit 0b0233f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ocw/lib/openstack.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def client(self) -> None:
if self.__client is None:
self.__client = openstack.connect(
debug=bool(DEBUG),
insecure=True, # Trust the certificate
insecure=False,
auth_url=self.get_data('auth_url'),
project_name=self.get_data('project_name'),
username=self.get_data('username'),
Expand Down

0 comments on commit 0b0233f

Please sign in to comment.