Re: using a custom :store with wrap-multipart-params in ring middle ware

2014-04-01 Thread K Livingston
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

Re: using a custom :store with wrap-multipart-params in ring middle ware

2014-04-01 Thread James Reeves
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

Re: using a custom :store with wrap-multipart-params in ring middle ware

2014-04-01 Thread K Livingston
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