Ning Sun
Ning Sun
This should be caused by breaking changes introduced in failsafe 3.3, which replaces some `Duration` API with `Instant`. Can you show me some code so we can see which variable...
This is weird. It should be `*start-time-ms*` that being cast to `Duration`. Have you tried a `lein clean` for this case?
Thank you @realgenekim ! I didn't realize we can have such little rate :). Could you please add a test case in `tests/diehar/rate_limiter_test.clj` by replacing the current test with a...
LGTM. Thank you for following up.
Yes because partial has its own context data. I'm curious about your use case for reusing the `RenderContext`.
I think it's not possible also it's not recommended to have data modification in templates, which has poor debug experience. I will suggest you to prepare the data ahead of...
This sounds promising to me. Have you tried benchmark with you new implementation? The current partial has a step of context clone, which I believe is the root cause of...
hmm.. this syntax is not supported by handlebars-rust. We will need special treatment for this `[]` syntax
Hi @HiImJulien , I would recommend your current solution too. Because template engine has no context about user's preference, it's not possible to format the date in helper unless you...
I see. Thank you for clarification. But before we send data into template's rendering process, it has to be converted to `serde_json::Value` types so it's impossible to retain `chrono::DateTime` and...