Thanks. This is indeed what was going on. I even went checking for that
middle ware being referenced somewhere else, but didn't realize that
handler function was adding so much middle ware (didn't even bother looking
in it).
I removed the double calls and things are performing exactly as I ex
It's because you apply wrap-multipart-params twice. First with the default
arguments, then with your custom store. The first application of the
function is via compojure.handler/site. If you remove that, or use
handler/api instead, or apply the parameter middleware yourself, your code
should work a
Sorry, I just realized there's a ring-specific mailing list - apologies for
the clutter.
Moved:
https://groups.google.com/d/topic/ring-clojure/O5HoT-UIWfk/discussion
On Tuesday, April 1, 2014 12:02:26 PM UTC-6, K Livingston wrote:
>
> I'm having trouble using a custom :store with multipart-params