Skip to content

Commit

Permalink
Remove ca_cert
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed Feb 6, 2025
1 parent 5bd3f92 commit 9e900de
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions faassupervisor/storage/providers/rucio.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ class Rucio(DefaultStorageProvider):

_TYPE = 'RUCIO'
_OIDC_SCOPE = 'openid profile offline_access eduperson_entitlement'
_CA_CERT = '/etc/ssl/certs/ca-certificates.crt'
_FOLDER_SEPARATOR = '__'

def __init__(self, stg_auth):
Expand Down Expand Up @@ -59,7 +58,6 @@ def _set_rucio_environment(self):
temp_file.write(b'[client]\n')
temp_file.write(b'rucio_host = %s\n' % self.stg_auth.get_credential('host').encode())
temp_file.write(b'auth_host = %s\n' % self.stg_auth.get_credential('auth_host').encode())
temp_file.write(b'ca_cert = %s\n' % self._CA_CERT.encode())
temp_file.write(b'auth_type = oidc\n')
temp_file.write(b'account = %s\n' % self.stg_auth.get_credential('account').encode())
temp_file.write(b'auth_token_file_path = %s\n' % token_temp_file.name.encode())
Expand Down

0 comments on commit 9e900de

Please sign in to comment.