Benoit Chesneau

Results 726 comments of Benoit Chesneau

mmm why closing it? is it fixed? actually i was thinking that instead of flattening the list we should indeed use its representation like python (or others) do. I will...

you can provide your own backend for metrics: https://github.com/benoitc/erlang-metrics Plan for 2.0 is to replace it by opencensus.

Or we could also replace metrics by a backend using [hooks](https://hex.pm/packages/hooks)

@mgwidmann I still have to test an elixir application, but using an erlang application I don't reproduce the issue: ```erl ○ → rebar3 shell ===> Verifying dependencies... ===> Compiling testapp...

@mgwidmann > Can't you just add :exometer and :folsom to the dependencies list to fix this issue? no hackney doesn't really depend on them. Do you have any other error...

> I expected that when `stream_to` passed hackney would track this process. what would be the main goal of it? Right now the stream "Owner" (which is the Pid set...

@shribe for now it is expected to send the body immediately and then automatically answering. Your usage makes perfect sense for me, I think we could add an option to...

@shribe Patches are always welcomes. Anyway the current implementation does the following: if an expect result is expected it will wait fro at most 1second from the server if a...

There is actually an issue with streamed body. Right now you will have to ask by yourself to get the expected response (using hackney_response:expected_response/1) and continue on it or not....