Richard Penwell <[email protected]> wrote: > So I discovered this was a problem whereby request.body.to_s behaves > differently. I wonder if TeeStream should define to_s as an alias for > read?
to_s isn't defined by any version of the Rack spec. It's horrible practice to use it, too, since it could be a big upload that uses all your memory. What are you using that does request.body.to_s? Can you change it? -- Eric Wong _______________________________________________ Unicorn mailing list - [email protected] http://rubyforge.org/mailman/listinfo/mongrel-unicorn Do not quote signatures (like this one) or top post when replying
