mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
Merge pull request #3306 from riking/badge-rescue
FIX: Don't stop the badge grant after the first failure
This commit is contained in:
commit
7ce2dea33e
2 changed files with 9 additions and 2 deletions
|
@ -11,7 +11,12 @@ module Jobs
|
|||
return unless SiteSetting.enable_badges
|
||||
|
||||
Badge.all.each do |b|
|
||||
BadgeGranter.backfill(b)
|
||||
begin
|
||||
BadgeGranter.backfill(b)
|
||||
rescue => ex
|
||||
# TODO - expose errors in UI
|
||||
Discourse.handle_job_exception(ex, error_context({}, code_desc: 'Exception granting badges', extra: {badge_id: b.id}))
|
||||
end
|
||||
end
|
||||
|
||||
BadgeGranter.revoke_ungranted_titles!
|
||||
|
|
|
@ -120,7 +120,9 @@ class BadgeGranter
|
|||
user_ids = list.map{|i| i["user_ids"]}.flatten.compact.uniq
|
||||
|
||||
next unless post_ids.present? || user_ids.present?
|
||||
find_by_type(type).each{|badge| backfill(badge, post_ids: post_ids, user_ids: user_ids)}
|
||||
find_by_type(type).each{ |badge|
|
||||
backfill(badge, post_ids: post_ids, user_ids: user_ids)
|
||||
}
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue