You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a high-stakes financial system, silence is a risk. If a mint request is submitted but stays in a PENDING state for too long, it could indicate a bottleneck, an unavailable team member, or a missed opportunity. This issue implements SLA (Service Level Agreement) timers and Automated Escalation to ensure that minting operations remain fluid while maintaining strict oversight.
🎯 Objective
Automate the progression of mint requests that have stalled. If an approver does not act within a defined window, the system must either nudge them, escalate the request to a more senior authority, or expire the request to prevent "Stale" transactions.
🛠️ Technical Requirements
SLA Configuration:
Warning Level: 4 hours of inactivity (Send reminder).
Escalation Level: 12 hours of inactivity (Notify next-tier manager).
Auto-Expiration: 24 hours (Mark as EXPIRED).
Escalation Logic:
If a Tier 1 operator does not approve in 4 hours, automatically grant visibility/notification to a Tier 2 manager to take over.
Use a background worker (e.g., Sidekiq or Celery) to check the created_at timestamp of all PENDING requests every 30 minutes.
Stellar Timebounds Integration:
Every mint request sent to the blockchain must include a Stellar time_bounds parameter.
If the transaction doesn't hit the ledger before the timebound expires, the system must move the internal record to a TIMEOUT_FAILED state to prevent accidental late execution.
Notification Dispatcher:
Integration with Slack/Email to send "Stalled Request" alerts to the relevant department leads.
✅ Acceptance Criteria
Approvers receive an automated reminder if a request is pending for > 4 hours.
📋 Description
In a high-stakes financial system, silence is a risk. If a mint request is submitted but stays in a
PENDINGstate for too long, it could indicate a bottleneck, an unavailable team member, or a missed opportunity. This issue implements SLA (Service Level Agreement) timers and Automated Escalation to ensure that minting operations remain fluid while maintaining strict oversight.🎯 Objective
Automate the progression of mint requests that have stalled. If an approver does not act within a defined window, the system must either nudge them, escalate the request to a more senior authority, or expire the request to prevent "Stale" transactions.
🛠️ Technical Requirements
EXPIRED).created_attimestamp of allPENDINGrequests every 30 minutes.time_boundsparameter.TIMEOUT_FAILEDstate to prevent accidental late execution.✅ Acceptance Criteria
EXPIREDstatus and cannot be approved without a re-submission (Implement Advanced Caching Strategies #123).🟠 Priority: High
Labels:
Workflow-Optimization,SLA,Reliability