|
@@ -335,10 +335,10 @@ class CertDeliveryServiceServicer(llnwCERT_pb2_grpc.CertDeliveryServiceServicer)
|
|
return check_cert_update_error(res)
|
|
return check_cert_update_error(res)
|
|
|
|
|
|
def DeleteSSLCert(self, request, context):
|
|
def DeleteSSLCert(self, request, context):
|
|
- print("deleteSSLCert")
|
|
|
|
|
|
+ print("DeleteSSLCert")
|
|
print("请求:", request)
|
|
print("请求:", request)
|
|
try:
|
|
try:
|
|
- res = get_cl(request.base).delete_customer_certificate(uuid=request.uuid)
|
|
|
|
|
|
+ res = get_cl(request.base).delete_customer_certificate(uuid=request.uuid).json()
|
|
print("响应:", res)
|
|
print("响应:", res)
|
|
except:
|
|
except:
|
|
return DeleteSSLCertResponse(isSuccess=False)
|
|
return DeleteSSLCertResponse(isSuccess=False)
|