Skip to content

Commit cd71180

Browse files
authored
Fix encryption library build for net462 (#2511)
1 parent 08a16b3 commit cd71180

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Confluent.SchemaRegistry.Encryption/KmsClientWrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ private IList<string> GetKmsKeyIds()
8989
}
9090
if (!string.IsNullOrEmpty(alternateKmsKeyIds))
9191
{
92-
string[] ids = alternateKmsKeyIds.Split(',', StringSplitOptions.RemoveEmptyEntries);
92+
string[] ids = alternateKmsKeyIds.Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
9393
foreach (string id in ids)
9494
{
9595
if (!string.IsNullOrEmpty(id))

0 commit comments

Comments
 (0)