{% extends "admin/base.html" %} {% block title %}DLQ Entry - Admin - {{ site_name() }}{% endblock %} {% block admin_content %}

DLQ Entry

{% if entry %}{{ entry.short_id }} ยท {{ entry.cause }}{% else %}Not found{% endif %}

Back to DLQ
{% if not entry %}

DLQ entry not found.

{% else %}
Job
{{ entry.short_job_id }} {{ entry.job_type }}
Queue
{{ entry.queue }} {{ entry.state }}
Cause
{{ entry.cause }} {{ entry.attempts }} attempts
Replay
{{ entry.replayed_to_job_id or "not replayed" }}
{{ csrf_field() }}

Payload

{{ entry.payload }}
{% for attempt in entry.attempt_history %} {% endfor %}
Attempt Started Worker Duration Exception Error
{{ attempt.attempt }} {{ attempt.started_at }} {{ attempt.worker_id }} {{ attempt.duration_seconds }} {{ attempt.exception_type }} {{ attempt.error }}
{{ attempt.traceback }}
{% if not entry.attempt_history %}

No attempt history was recorded.

{% endif %}
{% endif %} {% endblock %}