提交 084cc718 编写于 作者: A Alexis Reigel

use after_commit instead of AfterCommitQueue

上级 e79e2ae1
class GpgKey < ActiveRecord::Base
include AfterCommitQueue
KEY_PREFIX = '-----BEGIN PGP PUBLIC KEY BLOCK-----'.freeze
belongs_to :user
......@@ -31,8 +29,8 @@ class GpgKey < ActiveRecord::Base
unless: -> { errors.has_key?(:key) }
before_validation :extract_fingerprint, :extract_primary_keyid
after_create :update_invalid_gpg_signatures_after_create
after_create :notify_user
after_commit :update_invalid_gpg_signatures, on: :create
after_commit :notify_user, on: :create
def key=(value)
value.strip! unless value.blank?
......@@ -75,10 +73,6 @@ class GpgKey < ActiveRecord::Base
end
def notify_user
run_after_commit { NotificationService.new.new_gpg_key(self) }
end
def update_invalid_gpg_signatures_after_create
run_after_commit { update_invalid_gpg_signatures }
NotificationService.new.new_gpg_key(self)
end
end
......@@ -13,7 +13,6 @@ class User < ActiveRecord::Base
include IgnorableColumn
include FeatureGate
include CreatedAtFilterable
include AfterCommitQueue
DEFAULT_NOTIFICATION_LEVEL = :participating
......@@ -156,10 +155,10 @@ class User < ActiveRecord::Base
before_validation :set_public_email, if: :public_email_changed?
after_update :update_emails_with_primary_email, if: :email_changed?
after_update :update_invalid_gpg_signatures, if: :email_changed?
before_save :ensure_authentication_token, :ensure_incoming_email_token
before_save :ensure_user_rights_and_limits, if: :external_changed?
after_save :ensure_namespace_correct
after_commit :update_invalid_gpg_signatures, on: :update, if: -> { previous_changes.key?('email') }
after_initialize :set_projects_limit
after_destroy :post_destroy_hook
......@@ -516,7 +515,7 @@ class User < ActiveRecord::Base
end
def update_invalid_gpg_signatures
run_after_commit { gpg_keys.each(&:update_invalid_gpg_signatures) }
gpg_keys.each(&:update_invalid_gpg_signatures)
end
# Returns the groups a user has access to
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册