jistr
                                            jistr
                                        
                                    Yes, I wrote in the first post that this happens even with version 0.2.0.h (the latest prerelease), if this is what you mean. The stack trace shown above was produced...
Now on my real use case it seems to pass twice in the loop that is calling the inner task and then it throws the exception attached. It seems not...
Simple failing "test case": ``` namespace :test do task :test, on: :remote do 2.times do run 'pwd' run_task :'test:inner' end end task :inner, on: :remote do run 'pwd' end end...
We probably need to use the solution from ansible-dconf: https://github.com/jistr/ansible-gsetting/commit/83ebc0bf30a611fb12ad73e2d443bdc1c463b0bb
Hmm weird. I never used send_file so I never hit this. I think the only thing that changes response is Cookie strategy's response callback [1], so this might be a...
Thanks for getting into this. Assigning `body` to `response` variable looks funny, but works because ActionDispatch::Response returns self in this place. I'll probably look into this a bit more and...
Hey John, I hope this should do: https://github.com/jistr/mobvious/commit/e225771e4d1118484928726d4db66be56b8229ae Could you please verify that it works? You can put this into your Gemfile to test it: ``` gem 'mobvious', :git =>...
^^ I mean regarding the send_file issue.
Hmm :( I'm not creating a new Rack::Response if the thing returned from app already behaves in a way compatible with Rack::Response, which should be the case of ActionDispatch::Response. This...
And yes, I'm not rewriting response. I return the original thing that the app returns. Also, creating new Rack::Response doesn't rewrite the response, unless I'm mistaken. It's just a wrapper...