Yury Yarashevich
Yury Yarashevich
I've noticed that `rrtr` feedback type is used in `Google Meet`. Found definition of `rrtr` in [`Chromium` source](https://source.chromium.org/chromium/_/webrtc/src.git/+/2986e6a791af08415d57890ee8cc5b8f44a9d96f:modules/rtp_rtcp/source/rtcp_packet/rrtr.cc;l=18;drc=92ea95e34af5966555903026f45164afbd7e2088).
Hi! I like the idea of having sane default limit to number of threads in pool. I've tried to implement it. I've set default value to small value like `4`...
Just a small investigation, because I've touched related code in my PRs. There are two paces which calls `terminate(IceProcessingState.TERMINATED);` 1. From [`Agent.free`](https://github.com/jitsi/ice4j/blob/4027cf429dc7a27c01eebf4f80c0df32ddace003/src/main/java/org/ice4j/ice/Agent.java#L2368). There is no `Free ICE agent` (logged at...
Hi there! I'm encountering the same problem. As an additional detail I could add that the same crash happen when `ctx.notify_later` is used. It seems like both `ctx.notify_later` and `ctx.run_internval`...
Thanks for additional details! I didn't realize the cost introduced by additional benchmarks is important. What I'm thinking right now, is that as a user I'd like to definitely see...
> why does tonic get several allocators comparison and not, e.g., other Rust or C++ implementations? I completely agree with the point that any language which rely on malloc/free can...
Thanks a lot you've taken a look at the issue. I've already dived into https://github.com/nextest-rs/nextest/blob/main/nextest-runner/src/reporter/aggregator.rs and it seems to me that proper extraction of message and backtrace (if present) separately...
Hello! I had answered most of the questions in neighbor MR https://github.com/Unleash/unleash-client-rust/pull/74#issuecomment-1895973920
In general to debug possible future problems like the one I had previously, I think logging error message will dramatically simplify debugging experience of library users.
@bbaldino ah, sorry, I've missed your comment. What I was trying to fix is to move `usrsctp` usage into a single thread to avoid multi threading bugs in `usrsctp`. This...