Skip to content

Commit 39c1e80

Browse files
authored
Merge Release v1.1.1 from Keyfactor/release-1.1
fix renci library dependency
2 parents bf4f71a + 17d647a commit 39c1e80

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
v1.1.1
2+
- Remove Renci library DLL from External References
3+
14
v1.1.0
25
- Add Reenrollment capability
36

@@ -7,4 +10,4 @@ v1.0.1
710
- Add logic to refresh F5 token for token authentication
811

912
v1.0.0
10-
- Initial Version
13+
- Initial Version
-909 KB
Binary file not shown.

F5BigIQ/Inventory.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,13 @@ public JobResult ProcessJob(InventoryJobConfiguration config, SubmitInventoryUpd
5252
List<F5CertificateItem> certItems = f5Client.GetCertificates();
5353
foreach (F5CertificateItem certItem in certItems)
5454
{
55-
logger.LogDebug($"Retrieving Alias {certItem.Alias}, item {(certItems.IndexOf(certItem) + 1).ToString()} of {certItems.Count.ToString()}");
55+
logger.LogDebug($"Retrieving Alias {certItem.Alias}, item {(certItems.IndexOf(certItem) + 1).ToString()} of {certItems.Count.ToString()}");
5656
if (certItem.FileReference == null)
57+
{
58+
logger.LogDebug($"No file reference found for {certItem.Alias}");
5759
continue;
60+
}
61+
5862
X509Certificate2Collection certChain = f5Client.GetCertificateByLink(certItem.FileReference.Link);
5963
List<string> certContents = new List<string>();
6064
bool useChainLevel = certChain.Count > 1;
@@ -80,6 +84,7 @@ public JobResult ProcessJob(InventoryJobConfiguration config, SubmitInventoryUpd
8084

8185
try
8286
{
87+
logger.LogDebug($"Submitting {inventoryItems.Count.ToString()} certificates");
8388
submitInventory.Invoke(inventoryItems);
8489
return new JobResult() { Result = Keyfactor.Orchestrators.Common.Enums.OrchestratorJobStatusJobResult.Success, JobHistoryId = config.JobHistoryId };
8590
}

integration-manifest.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@
126126
"Style": "Default"
127127
},
128128
"PrivateKeyAllowed": "Required",
129-
"JobProperties": [],
130129
"ServerRequired": true,
131130
"PowerShell": false,
132131
"BlueprintAllowed": true,

0 commit comments

Comments
 (0)