Skip to content
This repository was archived by the owner on Apr 12, 2022. It is now read-only.

add Apache::Request#flush method for Kernel#spawn. #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

nishidayuya
Copy link
Contributor

mod_ruby application cannot call Kernel#spawn.
Because Kernel#spawn requires $stdout.flush and mod_ruby replaces $stdout to Apache::Request instance (no flush method).

This pull-request fixes it.

An example:

require "open3"

out, status = *Open3.capture2("ls")  #=> /home/yuya/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/open3.rb:211:in `spawn': undefined method `flush' for #<Apache::Request:0x007f5e76f5a628> (NoMethodError)
puts(out)

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant