Skip to content

JobPauseForcedEvent

EventType: JOB_PAUSE_FORCEDDomain: production Broker subject: progress.notification.production

Administratively forces a running job into paused state. Unlike the voluntary JobPausedEvent, this event flags the job with forced after commit via BaseAdmin.post_processing(). Used by supervisors to halt work without operator consent.

Trigger

Triggered by: POST /event (universal event dispatcher)

Dispatched via POST /event in backend/api/endpoints/traceability.py with event_type: JOB_PAUSE_FORCED.

Preconditions

  • Job exists with key info.job_key
  • Job stage is STARTED

State Changes (Transaction)

Collections: Inherited from BaseProductionEvent.get_tx_collections()

  • Job updated: stage → PAUSED
  • Work session closed via WorkSessionClosedEvent child event

Side Effects (post_processing)

Extends BaseAdmin.post_processing():

  • Calls update_work_order()
  • Sets job.forced = event_key to mark the forced intervention

InfoModel Fields

FieldTypeDescription
job_keystrArangoDB key of the job to force-pause
work_order_keystr | NoneWork order key
phase_keystr | NonePhase key

Source

JobPauseForcedEvent on GitHub

Released under the Apache 2.0 License.