FIX: Sometimes not all output of psql was logged during restores
There was a race condition which could prevent Discourse from logging the last couple of lines of output from psql.
This commit is contained in:
parent
c0b37aa9ef
commit
fc8e842773
|
@ -70,7 +70,7 @@ module BackupRestore
|
|||
|
||||
log_thread = Thread.new do
|
||||
RailsMultisite::ConnectionManagement::establish_connection(db: @current_db)
|
||||
while psql_running
|
||||
while psql_running || !logs.empty?
|
||||
message = logs.pop.strip
|
||||
log(message) if message.present?
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue