Boris Okner

Results 18 comments of Boris Okner

Thanks @derekkraan, I'm still able to consistently reproduce it. I changed the code and steps to reproduce a bit to make it easier to run: ```elixir defmodule DeltaCrdt.Test do @crdt_test...

I was wondering if the Erlang/Elixir version and/or VM args could make a difference. Mine are: ```bash Erlang/OTP 24 [erts-12.0.3] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [jit] [dtrace] Interactive Elixir (1.13.1)...

Thanks @derekkraan ! You can count on me to test all the changes that might fix this issue 😄

I've done a lot of testing with sufficiently large `max_sync_size` and/or `max_sync_size` set to `:infinite`. Never once I've lost any data. I have a hunch that the data loss is...

Hi @josevalim, Thank you for the quick response. I'm not sure I follow. For purposes of our project, we do want to customize the rendering of the process info page....

But it is a filter :-) Perhaps, the example of implementation would explain the intention better(sorry, I should have thought about it!): ```elixir defmodule ProcessFilter.Demo do @behaviour Phoenix.LiveDashboard.ProcessFilter def list()...

> Got it. So I think it is good but instead of render_process_info we should call it extra_process_info and return a keyword list, WDYT? I like the idea of not...

I think, in addition to returning the content as structured data for the component to render it, we might also want to provide a way to render the content info...

> I'm not 100% sure if I like the filter idea. We already have a good abstraction for this: `row_fetcher`. Instead of modifying the current behaviour to add more complexity,...

> @bokner @alexcastano one of the complications here is that we need to fetch the processes from another node and, in order to fetch processes from another node, we need...