Vote #80983
完了When creating more than two identical attachments in a single db transaction, the first one always ends up unreadable
0%
説明
Due to the file re-using code running in an @after_commit@ hook, the hooks of any attachments that are created in a common db transaction will be deferred and run one after another after the outer transaction was committed. The existing implementation does not take that into account and as a consequence, when creating more than two identical attachments in a single transaction, the first attachment will end up with a non-existing @diskfile@.
The attached patch includes a test reproducing the issue and a fix, which consists of using @last@ instead of @first@ when finding an existing attachment to re-use. This way, the selected attachment is consistent across all runs of the hook even if multiple candidates exist. I also added an explicit @order@ call for good measure.
This is a corner case that should never occur in normal Redmine usage - but may occur in 3rd party code that's creating many attachments wrapped in a transaction.
journals
Setting the target version to 4.0.8.
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Committed the fix. Thank you for your contribution.
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
related_issues
duplicates,Closed,28440,After commit missing file