Skip to content

Commit eb4d2c1

Browse files
ISBronnyrayokota
andauthored
Fix AvroSerializer configuration bug (#2126)
Co-authored-by: Robert Yokota <[email protected]>
1 parent 380d861 commit eb4d2c1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Confluent.SchemaRegistry.Serdes.Avro/AvroSerializer.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ public AvroSerializer(ISchemaRegistryClient schemaRegistryClient, AvroSerializer
105105
property.Key != AvroSerializerConfig.PropertyNames.UseLatestVersion &&
106106
property.Key != AvroSerializerConfig.PropertyNames.UseLatestWithMetadata &&
107107
property.Key != AvroSerializerConfig.PropertyNames.BufferBytes &&
108-
property.Key != AvroSerializerConfig.PropertyNames.SubjectNameStrategy)
108+
property.Key != AvroSerializerConfig.PropertyNames.SubjectNameStrategy &&
109+
property.Key != AvroSerializerConfig.PropertyNames.NormalizeSchemas)
109110
{
110111
throw new ArgumentException($"AvroSerializer: unknown configuration property {property.Key}");
111112
}

0 commit comments

Comments
 (0)