From 04734c46922483105e85a53e1ce59882066fe3c1 Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Sep 09 2022 15:51:04 +0000 Subject: Fix SIGLookasideCache super certs Signed-off-by: Troy Dawson --- diff --git a/src/centpkg/lookaside.py b/src/centpkg/lookaside.py index 9565ddb..7bbe988 100644 --- a/src/centpkg/lookaside.py +++ b/src/centpkg/lookaside.py @@ -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