Andrew Kostousov
Andrew Kostousov
@mr146 The following tests are passing on the latest [v1.3.2](https://github.com/skbkontur/GroBuf/releases/tag/v1.3.2) release: ``` [TestFixture] public class TestSerializeOnlyOverridableFieldsX { [Test] public void AllPropertiesExtractor() { var serializer = new Serializer(new AllPropertiesExtractor(), null, GroBufOptions.MergeOnRead);...
Nonetheless the test case `VirtualProperty` is failing while test case `AbstractProperty` is passing: ``` public class TestVirtualProps { [Test] public void AbstractProperty() { var bytes = serializer.Serialize(new DerivedWithAbstractProp(42)); Assert.That(serializer.Deserialize(bytes).Prop, Is.EqualTo(42));...
@edenhill One more ping regarding this issue. We also have this annoying case with topics where data is rarely written to. Consumer is working 24/7, but after it restarts, sometimes...
This is partially solved by #10.
With such a trick [we get](https://github.com/vektonn/vektonn-client-python/runs/5330785234?check_suite_focus=true#step:6:65): ``` ----------------------------- Captured stdout call ----------------------------- 4260640 function calls in 7.623 seconds Ordered by: internal time ncalls tottime percall cumtime percall filename:lineno(function) 118351 2.693...