Prevent ActiveRecord::StatementInvalid: PG::InFailedSqlTransaction: ERROR: current transaction is aborted
, commands ignored until end of transaction block issues.
This commit is contained in:
parent
5a9138e4be
commit
335b1fad50
1 changed files with 15 additions and 9 deletions
|
@ -8,6 +8,7 @@ class Transaction
|
|||
ApplicationHandleInfo.current = options[:interface_handle]
|
||||
end
|
||||
ActiveRecord::Base.transaction do
|
||||
begin
|
||||
PushMessages.init
|
||||
yield
|
||||
if options[:interface_handle]
|
||||
|
@ -18,6 +19,11 @@ class Transaction
|
|||
disable: options[:disable],
|
||||
)
|
||||
PushMessages.finish
|
||||
rescue ActiveRecord::StatementInvalid => e
|
||||
Rails.logger.error e.inspect
|
||||
Rails.logger.error e.backtrace
|
||||
raise ActiveRecord::Rollback
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue