Tiago Scolari

Results 20 comments of Tiago Scolari

More digging for future investigation. Debugging the method points that the route is registered to the application but, deep inside `actionpack-5.1.6/lib/action_dispatch/routing/route_set.rb @ line 869 ActionDispatch::Routing::RouteSet#recognize_path:` : ``` 868: app =...

Cause of why, I think, it's not a `SERVE`: https://github.com/rails/rails/blob/v5.1.6/actionpack/lib/action_dispatch/routing/mapper.rb#L294-L304 ``` def app(blocks) if to.respond_to?(:action) Routing::RouteSet::StaticDispatcher.new to elsif to.respond_to?(:call) Constraints.new(to, blocks, Constraints::CALL) elsif blocks.any? Constraints.new(dispatcher(defaults.key?(:controller)), blocks, Constraints::SERVE) else dispatcher(defaults.key?(:controller)) end...

@thoas, could you tell if this feature will be implemented or if it's already implemented? I couldn't see it in the referenced commit. Many thanks

For anyone looking for this, an insecure but working solution is: ``` require('https').globalAgent.options.rejectUnauthorized = false ```

It would be nice to support applications that doesn't actually render anything - e.g. API servers. In my case I have a node dashboard talking to a rails API backend,...

@etiennejournet I've done some investigation on this, and it seems that `fluentd_output_status_num_errors` is not intended to work like that. If your fluentd-elasticsearch-plugin has a connection error (or raise an exception),...

I think that's exactly what I had in mind, but there is another point we should consider, is that if the partial is crafted for the mobile layout/view, probably it...

Theoretically it should not do this by default. The default behaviour is to skip these kind of requests. Could you try ensuring that the correct option is set? ``` ruby...