diff --git a/src/cluster/DotNext.Net.Cluster/Net/Cluster/Consensus/Raft/TransportServices/ConnectionOriented/Server.LogEntryProducer.cs b/src/cluster/DotNext.Net.Cluster/Net/Cluster/Consensus/Raft/TransportServices/ConnectionOriented/Server.LogEntryProducer.cs index 5d2f9fa29..553f731f4 100644 --- a/src/cluster/DotNext.Net.Cluster/Net/Cluster/Consensus/Raft/TransportServices/ConnectionOriented/Server.LogEntryProducer.cs +++ b/src/cluster/DotNext.Net.Cluster/Net/Cluster/Consensus/Raft/TransportServices/ConnectionOriented/Server.LogEntryProducer.cs @@ -36,8 +36,8 @@ internal ReceivedLogEntries(ProtocolStream stream, MemoryAllocator allocat var configLength = reader.ReadInt64(true); Configuration = configLength > 0L - ? new(fingerprint) - : new(allocator(checked((int)configLength)), fingerprint); + ? new(allocator(checked((int)configLength)), fingerprint) + : new(fingerprint); this.allocator = allocator; }