Torbjörn Törnkvist
Torbjörn Törnkvist
> @etnt It seems you need to manually install the Emacs Treesitter Packages as described [here](https://emacs-tree-sitter.github.io/installation/). > > I think adding this to the documentation might be a good idea....
To answer your first question. The Long Running request over Cannel(0) should not be terminated like this. It should be able to finish on its own. Ok, and I forgot...
fyi: I made a quick fix, ignoring the cache miss, then my code seem to run as expected: ```erlang handle_msg(#ssh_msg_channel_request{recipient_channel = ChannelId, request_type = "exit-signal", want_reply = false, data =...
> can you verify the behavior with current OTP-27 version (or at least OTP-26, OTP-25)? this would allow me to increase priority of the issue. Ok, I'll try.
Ok, I have now tried it with this OTP version: ```erlang # erl Erlang/OTP 27 [erts-15.1.1] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] ``` Running with `ssh_dbg:on()` I see this: ``` 09:12:55.025229...
Well, it isn't easy to reproduce. I've got a reproduction setup involving customer data but that only reproduce the problem when running in a Docker container (running Ubuntu 22.04) on...
Hm..I tried this in my rebar.config: {deps, [ {cowboy, "2.9.0"}, {ranch, "2.1.0"}, {cowlib, "2.11.0"}, {gun, "2.0.1"} ]}. {overrides, [ {override, cowboy, [{deps, [cowlib, ranch]}]} ]}. But I still get: ===>...
Thanks! (I had increased the Cowlib version, but forgot the rebar.lock file which had the old version number) --T. On Thu, Oct 23, 2025 at 11:07 AM Loïc Hoguin ***@***.***>...