David Jeche

Results 11 comments of David Jeche

The key thing I suppose was to have store of agent information and the ability for the agent to possibly reconnect when the merlin restarts. This could be a SQLite...

If this works as described it should be fine. Its just when I done a reboot and I went to look the listener was no longer configured. The sessions showed...

Yes, that is a perfect description of what I had in mind. Though it is something that may simplify things I am not sure how well it well fair. I...

I had a look at this locally. When prune is set to true the following function is called `prune_empty()`. This is what then performs pruning by updating the output object...

I see what you mean. The repository looks like a great Kapitan reference. It would be a difficult one to solve without changing the default behaviour in my opinion, but...

I believe that this issue is not only specific to remote signing but it occurs when local singing also. This means that even when you generate a certificate locally it...

Thanks for the response. This did not quite work since formex_ecto is not compatible with my version of ecto. The best method is to change the flow. Use custom reg...

I managed to get the phoenix default ``` {:phoenix_ecto, "~> 4.0"}, {:ecto_sql, "~> 3.0"}, {:postgrex, ">= 0.0.0"}, ``` I am just checking now to see if the what I intend...

Don't you think we could do something here on insert: ``` |> handle_form |> case do {:ok, article} -> # do something with a new article struct {:error, form} ->...

Its funny I tend to find the same issue when working on nitrogen. The `#restful_upload{}` does not work. It can retrieve the file name but not the required file. My...