Peter Schrammel
Peter Schrammel
this happens with :include in the named_scope, too.
I'm trying to strip down the issue so the controller looks like this: ``` class CmsController < ApplicationController include ActionController::Live def get response.headers.delete("Content-Length") response.headers["X-Accel-Buffering"] = "no" logger.debug("Request: #{request.env['X-Request-ID']}, #{request.env['REQUEST_PATH']}") 1.upto(60)...
Okay, it seem the Live plugin is not supported and not needed. I solved the downstream with rack hijack (just for others who have the same issue). Would be nice...
Can only second this, there are awesome adapters for high throughput IO like https://github.com/socketry/async-http-faraday . THX
Hi, this might be interesting together with https://github.com/hanhdt/vue-trix/pull/319 ; would be very kind to do a release with these two pull requests. I know it's a big effort to maintain...
I have an example hack here: https://github.com/socketry/falcon/pull/206/files#diff-32e79c935c64dde33bd327b3b8c530bc4b842262ec53092b82830f7bb0177184 it's not clean but works. My example has other issues. Under load it doesn't work (several uploads fail). Didn't have the time for...
Just a proof of concept: install this: https://github.com/ezcater/activerecord-postgres_pub_sub replace bin/delayed_job with: ```ruby !/usr/bin/env ruby require File.expand_path(File.join(File.dirname(__FILE__), '..', 'config', 'environment')) require 'delayed/command' module Delayed class Worker def start # rubocop:disable CyclomaticComplexity,...