mirror of
https://github.com/discourse/discourse.git
synced 2025-05-24 03:36:18 +08:00
FIX: Avoid raising error when updating post and topic count user stats. (#15873)
There are still spots in the code base which results in us trying to turn the post and topic count negative. However, we have a job that runs on a daily basis which will correct the count. Therefore, avoid raising an error for now and log the exception instead.
This commit is contained in:

committed by
GitHub

parent
71f7f7ed49
commit
ab5361d69a
24
spec/services/user_stat_count_updater_spec.rb
Normal file
24
spec/services/user_stat_count_updater_spec.rb
Normal file
@ -0,0 +1,24 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
describe UserStatCountUpdater do
|
||||
fab!(:user) { Fabricate(:user) }
|
||||
fab!(:user_stat) { user.user_stat }
|
||||
fab!(:post) { Fabricate(:post) }
|
||||
|
||||
before do
|
||||
@orig_logger = Rails.logger
|
||||
Rails.logger = @fake_logger = FakeLogger.new
|
||||
end
|
||||
|
||||
after do
|
||||
Rails.logger = @orig_logger
|
||||
end
|
||||
|
||||
it 'should log the exception when a negative count is inserted' do
|
||||
UserStatCountUpdater.decrement!(post, user_stat: user_stat)
|
||||
|
||||
expect(@fake_logger.warnings.first).to include("PG::CheckViolation")
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user