mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 19:00:40 +08:00
restorer: clarify logging
This commit is contained in:
parent
58bb3967e5
commit
90291318eb
|
@ -41,6 +41,7 @@ module BackupRestore
|
|||
extract_dump
|
||||
|
||||
if !can_restore_into_different_schema?
|
||||
log "Cannot restore into different schema, restoring in-place"
|
||||
enable_readonly_mode
|
||||
|
||||
pause_sidekiq
|
||||
|
@ -56,6 +57,7 @@ module BackupRestore
|
|||
|
||||
disable_readonly_mode
|
||||
else
|
||||
log "Restoring into 'backup' schema"
|
||||
restore_dump
|
||||
enable_readonly_mode
|
||||
|
||||
|
@ -193,10 +195,9 @@ module BackupRestore
|
|||
end
|
||||
|
||||
def extract_metadata
|
||||
log "Extracting metadata file..."
|
||||
|
||||
@metadata =
|
||||
if system('tar', '--list', '--file', @tar_filename, BackupRestore::METADATA_FILE)
|
||||
log "Extracting metadata file..."
|
||||
FileUtils.cd(@tmp_directory) do
|
||||
Discourse::Utils.execute_command(
|
||||
'tar', '--extract', '--file', @tar_filename, BackupRestore::METADATA_FILE,
|
||||
|
@ -208,6 +209,7 @@ module BackupRestore
|
|||
raise "Failed to load metadata file." if !data
|
||||
data
|
||||
else
|
||||
log "No metadata file to extract."
|
||||
if @filename =~ /-#{BackupRestore::VERSION_PREFIX}(\d{14})/
|
||||
{ "version" => Regexp.last_match[1].to_i }
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue
Block a user