mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 19:06:23 +00:00
leer la salida por separado para no bloquear el programa
This commit is contained in:
parent
ef00ce4d12
commit
8e89643bdb
1 changed files with 7 additions and 6 deletions
|
@ -55,15 +55,16 @@ class Deploy < ApplicationRecord
|
||||||
time_start
|
time_start
|
||||||
Dir.chdir(site.path) do
|
Dir.chdir(site.path) do
|
||||||
Open3.popen2e(env, cmd, unsetenv_others: true) do |_, o, t|
|
Open3.popen2e(env, cmd, unsetenv_others: true) do |_, o, t|
|
||||||
r = t.value
|
|
||||||
# XXX: Tenemos que leer línea por línea porque en salidas largas
|
|
||||||
# se cuelga la IO
|
|
||||||
# TODO: Enviar a un websocket para ver el proceso en vivo?
|
# TODO: Enviar a un websocket para ver el proceso en vivo?
|
||||||
|
Thread.new do
|
||||||
o.each do |line|
|
o.each do |line|
|
||||||
lines << line
|
lines << line
|
||||||
|
|
||||||
puts line if output
|
puts line if output
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
r = t.value
|
||||||
|
end
|
||||||
end
|
end
|
||||||
time_stop
|
time_stop
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue