We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08a16b3 commit cd71180Copy full SHA for cd71180
src/Confluent.SchemaRegistry.Encryption/KmsClientWrapper.cs
@@ -89,7 +89,7 @@ private IList<string> GetKmsKeyIds()
89
}
90
if (!string.IsNullOrEmpty(alternateKmsKeyIds))
91
{
92
- string[] ids = alternateKmsKeyIds.Split(',', StringSplitOptions.RemoveEmptyEntries);
+ string[] ids = alternateKmsKeyIds.Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
93
foreach (string id in ids)
94
95
if (!string.IsNullOrEmpty(id))
0 commit comments