Yannick Scherer
Yannick Scherer
Actually, retaining values not only for `ring-response` might be desirable. Let me know what you think.
I pushed an alternative approach as f21a2524aa51500b166cc67015c76c9fc98b1480, attaching the raw value to every response in `run-handler`, albeit still in the metadata since it would cause tests to fail otherwise. I...
Iapetos registries are "immutable" (not really, though, due to the underlying mutable Prometheus registry), so while `fn/initialize` (unfortunately) mutates the underlying registry, the iapetos wrapper is not updated. This means...
I tried it out, replicating your REPL session and what happens is that `(refresh)` re-created the `registry` binding, even though it was declared using `defonce`. This means, the following code...
@borikanes Good question! The alumbra handler expects a POST request with a JSON body, an object consisting of "query" (the GraphQL query string), "variables" (a JSON object with the provided...
Sure. In my case, I know that a few very similar migrations will be coming up repeatedly in the future. So, to make the chore a bit more bearable, I'm...
@wavejumper Just out of curiosity (since I'm no longer on the project that was using pushy), are there any plans to fix those issues?
Note: This happens because lein-try inserts ```clojure [com.github.fommil.netlib/all "RELEASE"] ``` into the `:dependencies` of a project, but should be inserting ```clojure [com.github.fommil.netlib/all "RELEASE" :extension "pom"] ``` in this case. Not...
> What happens if I ask for all assets in "public/scripts" - and this folder is present in both the file system and a jar? In the old version, all...
Update: It looks like this is perfectly feasible using the current classloader to retrieve an enumeration of all resources of a given name. (And I have to update `create-binary-asset` and...