mirror of
https://git.centos.org/centos/centpkg.git
synced 2025-02-24 00:32:55 +00:00
Fix SIGLookasideCache super certs
Signed-off-by: Troy Dawson <tdawson@redhat.com>
This commit is contained in:
parent
a136479657
commit
04734c4692
1 changed files with 2 additions and 1 deletions
|
@ -171,7 +171,8 @@ class StreamLookasideCache(CGILookasideCache):
|
||||||
class SIGLookasideCache(CGILookasideCache):
|
class SIGLookasideCache(CGILookasideCache):
|
||||||
def __init__(self, hashtype, download_url, upload_url, name, branch, structure='hash'):
|
def __init__(self, hashtype, download_url, upload_url, name, branch, structure='hash'):
|
||||||
super(SIGLookasideCache, self).__init__(
|
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.name = name
|
||||||
self.branch = branch
|
self.branch = branch
|
||||||
|
|
Loading…
Add table
Reference in a new issue