From a3057b88b5b77fd9643df0beb8ece63529a26cdb Mon Sep 17 00:00:00 2001 From: Nick Gauthier Date: Wed, 27 Jan 2010 10:33:58 -0500 Subject: [PATCH] removed pipe sync --- lib/hydra/pipe.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/hydra/pipe.rb b/lib/hydra/pipe.rb index 577ebaa..491949d 100644 --- a/lib/hydra/pipe.rb +++ b/lib/hydra/pipe.rb @@ -28,7 +28,6 @@ module Hydra #:nodoc: def initialize @child_read, @parent_write = IO.pipe @parent_read, @child_write = IO.pipe - [@parent_write, @child_write].each{|io| io.sync = true} end # Read a line from a pipe. It will have a trailing newline.