mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 16:41:42 +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,14 +55,15 @@ class Deploy < ApplicationRecord
|
|||
time_start
|
||||
Dir.chdir(site.path) do
|
||||
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?
|
||||
o.each do |line|
|
||||
lines << line
|
||||
puts line if output
|
||||
Thread.new do
|
||||
o.each do |line|
|
||||
lines << line
|
||||
|
||||
puts line if output
|
||||
end
|
||||
end
|
||||
r = t.value
|
||||
end
|
||||
end
|
||||
time_stop
|
||||
|
|
Loading…
Reference in a new issue