mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 13:41:31 +08:00
FIX: rescue mmdb download failure (#27556)
* rescue mmdb download failure If mmdb database fails to download a bootstrap fails. This is a trivial fix for that problem. A more elegant solution might check whether the dataabase was downloaded and provide a helpful error message. * linting --------- Co-authored-by: Joffrey JAFFEUX <j.jaffeux@gmail.com>
This commit is contained in:
parent
9ab18ed2e3
commit
6a5ee0693d
|
@ -55,6 +55,7 @@ class DiscourseIpInfo
|
|||
end
|
||||
end
|
||||
|
||||
begin
|
||||
gz_file =
|
||||
FileHelper.download(
|
||||
url,
|
||||
|
@ -76,6 +77,9 @@ class DiscourseIpInfo
|
|||
Discourse::Utils.execute_command("tar", "-xzvf", "#{dir}/#{filename}", chdir: dir)
|
||||
|
||||
Dir["#{dir}/**/*.mmdb"].each { |f| FileUtils.mv(f, mmdb_path(name)) }
|
||||
rescue => e
|
||||
Discourse.warn_exception(e, message: "MaxMind database download failed.")
|
||||
end
|
||||
ensure
|
||||
FileUtils.rm_r(dir, force: true) if dir
|
||||
gz_file&.close!
|
||||
|
|
Loading…
Reference in New Issue
Block a user