modified ProcessProcedureQueue to mark requests as queued and only re-queue them if they have been queued for over ten minutes

This commit is contained in:
Infineon\StieberD
2025-06-25 15:35:54 -07:00
parent 38e7b6e276
commit c6910c14c2
5 changed files with 69 additions and 51 deletions

View File

@ -1,7 +1,7 @@
compile insert PROC_QUEUE_EQUATES
/*----------------------------------------
Author : Table Create Insert Routine
Written : 09/12/2024
Written : 25/06/2025
Description : Insert for Table PROC_QUEUE
----------------------------------------*/
#ifndef __PROC_QUEUE_EQUATES__
@ -12,8 +12,8 @@ compile insert PROC_QUEUE_EQUATES
equ PROC_QUEUE.LAST_ATTEMPT_DTM$ to 3
equ PROC_QUEUE.ERROR$ to 4
equ PROC_QUEUE.ENTRY_DTM$ to 5
equ PROC_QUEUE.NUM_ATTEMPTS$ to 6
equ PROC_QUEUE.NUM_ATTEMPTS$ to 6
equ PROC_QUEUE.IN_QUEUE$ to 7
equ PROC_QUEUE.QUEUED_DTM$ to 8
#endif