Dario Saccavino
Dario Saccavino
I noticed this while debugging a service that checks the current timezone when some event happens; since the caching behaviour is different from the other platforms I tested on, I...
Can be reproduced with the following change: in https://github.com/metrics-rs/metrics/blob/e2c37f4253349333387be659e8d44aa127e1c10d/metrics-util/src/summary.rs#L279 Replace `thread_rng()` with `rand::rngs::mock::StepRng::new(seed.0, seed.1)` with `seed = (12194833282344109743, 13893952441524021419)`
I looked into the failure and I think the cause is the interpolation: it seems to me that the implementation of DDSketch rounds the 'rank' towards zero. The line where...
I know I can set the option per-target, but I would like to set it per-dependency, that is, link to all the other dependencies only if they are used, but...