mirror of
https://github.com/discourse/discourse.git
synced 2025-06-02 04:08:41 +08:00
FIX: Remove error for PostCreator in a transaction without skip_jobs (#11291)
Partial revert of b143412be473bacb50bad4c0ef8909d6a4717b67 (the refactoring is not reverted) This broke a few things, so we need to investigate and make some changes before reinstating the error
This commit is contained in:
@ -199,12 +199,6 @@ class PostCreator
|
||||
end
|
||||
|
||||
def create
|
||||
if !Rails.env.test? && !@opts[:import_mode]
|
||||
if ActiveRecord::Base.connection.open_transactions > 0 && !@opts[:skip_jobs]
|
||||
raise "You must use 'skip_jobs = true' when creating a post inside a transaction, otherwise jobs won't run properly."
|
||||
end
|
||||
end
|
||||
|
||||
if valid?
|
||||
transaction do
|
||||
build_post_stats
|
||||
|
Reference in New Issue
Block a user