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 20, 2024
1 parent adedcc7 commit 9b49092
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CitrixAdcOrchestratorJobExtension/CitrixAdcStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -315,11 +315,12 @@ public void UpdateKeyPair(string keyPairName, string certFileName, string keyFil
if (count > 0)
{
Logger.LogTrace($"Updating certificate-key pair with name {keyPairName}");
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}");

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

0 comments on commit 9b49092

Please sign in to comment.