Skip to content

Commit 64e5001

Browse files
author
Lee Fine
committed
ab#81696
1 parent 385ea81 commit 64e5001

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
v1.10.2
2+
- Bug Fix: Error when adding/replacing CA bundle certificates
3+
14
v1.10.1
25
- Bug Fix: Uploading replacement web server certificate file name for F5-WS-REST contains invalid ":" character.
36

F5Client.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,7 @@ public void AddBundleEntry(string bundle, string partition, string crtName, stri
917917
{
918918
bundleIncludes.Add(crt);
919919
F5BundleInclude bundleInclude = new F5BundleInclude { includeBundle = bundleIncludes.ToArray() };
920-
REST.Patch<F5BundleInclude>($"/mgmt/tm/sys/crypto/ca-bundle-manager/{bundle.Replace('/', '~')}", bundleInclude);
920+
REST.Patch<F5BundleInclude>($"/mgmt/tm/sys/crypto/ca-bundle-manager/~{bundle.Replace('/', '~')}", bundleInclude);
921921
}
922922
LogHandlerCommon.MethodExit(logger, CertificateStore, "AddBundleEntry");
923923
}

0 commit comments

Comments
 (0)