mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 20:53:42 +08:00
lower error level on onebox failures
This commit is contained in:
parent
84fdc655ad
commit
88a5a676a7
|
@ -128,7 +128,10 @@ module Oneboxer
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
rescue => e
|
rescue => e
|
||||||
Discourse.handle_job_exception(e, message: "While trying to onebox a URL", url: url)
|
# no point warning here, just cause we have an issue oneboxing a url
|
||||||
|
# we can later hunt for failed oneboxes by searching logs if needed
|
||||||
|
Rails.logger.info("Failed to onebox #{url} #{e} #{e.backtrace}")
|
||||||
|
|
||||||
# return a blank hash, so rest of the code works
|
# return a blank hash, so rest of the code works
|
||||||
{preview: "", onebox: ""}
|
{preview: "", onebox: ""}
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue
Block a user