Audience question asking how Sidekiq 7 solves the race condition of jobs scheduled inside a database transaction running before the transaction commits. Paweł answered that the pull request was still open and he didn't know the implementation details, only that this was flagged as one of the most important items for Sidekiq 7 and jobs would wait for the transaction to commit. A second attendee commented that the common solution is to persist an intent marker in the same transaction and have the job read it (retrying a few times for stale transactions, discarding after a delay), acknowledging there is no simple universal solution.