Skip to content

AireFrame Release Notes

Version: 3.1.3
Release Date: 22 July 2026

🐞 Bug Fixes

  • Fixed Job Scheduling Errors in the API (FRAME-2644)
  • Fixed Job Scheduling Errors in the Worker (FRAME-2645)

Detailed Changes

🐞 Bug Fixes


Fixed Job Scheduling Errors in the API (FRAME-2644)

Description

Resolved a race condition in the API where concurrent job scheduling requests could attempt to insert the same job or data point record simultaneously, causing duplicate key and concurrent update errors. Locking has been introduced around the affected operations to prevent this from recurring.

Fixed Job Scheduling Errors in the Worker (FRAME-2645)

Description

Resolved a race condition in the Worker where concurrent attempts to schedule the same trigger could fail because it had already been created by another process. The scheduling logic now correctly accounts for this, preventing job queuing failures.