mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-01 05:02:50 +08:00
Lock repository_row before inserting RepositoryCell in SavePdfToInventoryItem [SCI-5794]
This commit is contained in:
parent
46e2adf2e3
commit
c17192730e
1 changed files with 4 additions and 1 deletions
|
@ -11,7 +11,10 @@ module ReportActions
|
|||
end
|
||||
|
||||
def save
|
||||
ActiveRecord::Base.transaction do
|
||||
# we lock the row, to prevent two repository cells being created at the same location
|
||||
# as the RepositoryCell validation would pass in both concurrent transactions
|
||||
|
||||
@repository_row.with_lock do
|
||||
asset = create_new_asset
|
||||
delete_old_repository_cell
|
||||
@new_cell_value = create_new_cell_value(asset)
|
||||
|
|
Loading…
Reference in a new issue