Skip to content

Commit

Permalink
ab#61881
Browse files Browse the repository at this point in the history
  • Loading branch information
leefine02 authored and leefine02 committed Sep 6, 2024
1 parent 536502c commit a96552e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions CitrixAdcOrchestratorJobExtension/CitrixAdcStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -315,8 +315,11 @@ public void UpdateKeyPair(string keyPairName, string certFileName, string keyFil
if (count > 0)
{
Logger.LogTrace($"Updating certificate-key pair with name {keyPairName}");
sslcertkey.change(_nss, certKeyObject);
sslcertkey.update(_nss, certKeyObject);
base_response chgResponse = sslcertkey.change(_nss, certKeyObject);
Logger.LogDebug($"sslcertkey.change: ## Error Code ##: {chgResponse.errorcode} ## Message ##: {chgResponse.message}");

base_response updResponse = sslcertkey.update(_nss, certKeyObject);
Logger.LogDebug($"sslcertkey.update: ## Error Code ##: {updResponse.errorcode} ## Message ##: {updResponse.message}");
}
else
{
Expand Down

0 comments on commit a96552e

Please sign in to comment.