File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/Ydb.Sdk/src/Services/Topic Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public static class Deserializers
3535 /// </remarks>
3636 public static IDeserializer < byte [ ] > ByteArray = new ByteArrayDeserializer ( ) ;
3737
38- internal static readonly Dictionary < System . Type , object > DefaultSerializers = new ( )
38+ internal static readonly Dictionary < System . Type , object > DefaultDeserializers = new ( )
3939 {
4040 { typeof ( int ) , Int32 } ,
4141 { typeof ( long ) , Int64 } ,
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ public async Task<IReader<TValue>> Build()
1919 _driver ,
2020 _config ,
2121 Deserializer ?? ( IDeserializer < TValue > ) (
22- Deserializers . DefaultSerializers . TryGetValue ( typeof ( TValue ) , out var deserializer )
22+ Deserializers . DefaultDeserializers . TryGetValue ( typeof ( TValue ) , out var deserializer )
2323 ? deserializer
2424 : throw new YdbWriterException ( "The serializer is not set" )
2525 )
You can’t perform that action at this time.
0 commit comments