Fix SIGLookasideCache super certs

Signed-off-by: Troy Dawson <tdawson@redhat.com>
This commit is contained in:
Troy Dawson 2022-09-09 08:51:04 -07:00
parent a136479657
commit 04734c4692

View file

@ -171,7 +171,8 @@ class StreamLookasideCache(CGILookasideCache):
class SIGLookasideCache(CGILookasideCache):
def __init__(self, hashtype, download_url, upload_url, name, branch, structure='hash'):
super(SIGLookasideCache, self).__init__(
hashtype, download_url, upload_url, client_cert="/home/bstinson/.centos.cert")
hashtype, download_url, upload_url,
client_cert=client_cert, ca_cert=ca_cert)
self.name = name
self.branch = branch