Max Penet
Max Penet
Thanks for the report. I am traveling right now so I can't look into it before next week.
Sorry I totally forgot about that one. Why can't you just use regular clojure metadata on the input request-map?
Another quirk from linear when the request path is not valid and it ends up matching anyway: ```clojure (require '[io.pedestal.http.route.definition.table :as table]) (require '[io.pedestal.http.route.map-tree :as map-tree]) (require '[io.pedestal.http.route.linear-search :as linear])...
Thanks for looking into this. That is a blocking issue for us, we re trying to port a legacy app to pedestal route to allow a migration path down the...
Could be related to https://github.com/Factual/durable-queue/issues/16, I observed the same things.
I can reproduce the issue with the following code: https://gist.github.com/mpenet/a8266ac2d6e081701e74112bd20f3a5a You start both consumers producers, then after a while kill the producers and you will sometimes end up with a...
It seems if I try catch (both Exception and AssertionError) around dq/complete! **and** (deref task) I can get consistent results without locking, avoiding the issue from the previous comment and...
Edited for clarity
I can confirm this fixed our issue. It's been 2 days an hundreds of millions task later we didn't hit the issue again. Trying to summon the @ztellman in case...
+1 I am looking to do the exact same thing.