Vladimir Dementyev
Vladimir Dementyev
Thanks! Released in 1.4.3.
Have you tried adding `refind: true` to `let_it_be(:user)`? I think, the error could come form this definition
> I have also tried it by configuring config.default_modifiers[:freeze] = true as a default and it also returns the same error message. Ah, I see. There is probably a conflict...
I see. The `default_modifiers[:refind] = true` will give you the same level of _safety_: every test uses a fresh object, so no state leakage possible. It has no side-effects at...
Yeah, we accumulated all changes into a single changeset and apply it to the current record to build a back-in-time copy: https://github.com/palkan/logidze/blob/cc0028a3e93368e797043c190566fecae513a721/lib/logidze/model.rb#L266 Thus, using `#changes` doesn't work as you wish....
Thanks!
Check out https://docs.anycable.io/anycable-go/reliable_streams > clients must detect that the old pods are dead and connect to the new pods (right?). Yeah, only if you re-deploy anycable pods; you don't need...
Yeah, it's better to keep anycable pods on for longer times to avoid disconnections
> 3 pods HPA configuration broadcast events 3 times? We have a pub/sub component responsible for distributing messages within the cluster. When you perform a broadcast from the application, you...
Looks like a timestamp precision/rounding issue: the log entry has a timestamp 1733657731644 == 2024-12-08 11:35:31.644, but the `updated_at` contains a slightly smaller value — 2024-12-08 11:35:31.643674. That's an interesting...