{% extends "base.html" %} {% block content %}
{{ task.task_id }} Back to Tasks
Basic Information
Task ID: {{ task.task_id }}
Module: {{ task.task_id.module }}
Function: {{ task.task_id.func_name }}
Configuration
Registration Concurrency: {{ task.conf.registration_concurrency.name }}
Running Concurrency: {{ task.conf.running_concurrency.name }}
Key Arguments: {{ task.conf.key_arguments|join(', ') or 'None' }}
Max Retries: {{ task.conf.max_retries }}
Retry For Exceptions: {{ task.conf.retry_for|map(attribute='__name__')|join(', ') }}
Auto Parallel Batch Size: {{ task.conf.parallel_batch_size }}
Call Result Cache: {{ task.conf.call_result_cache }}
Disable Cache Args: {{ task.conf.disable_cache_args|join(', ') or 'None' }}
Active Calls ({{ calls|length }})
{% if calls %}
{% for call in calls %} {% if call and call.serialized_arguments %} {% endif %} {% endfor %}
Call ID Arguments Actions
{% if call and call.call_id %} {{ call.call_id.key }} {% else %} Invalid ID {% endif %} {% if call and call.serialized_arguments %} {% else %} No arguments {% endif %} {% if call and call.call_id %} Details {% else %} {% endif %}
{% with args=call.serialized_arguments, id_prefix='task-call-'~loop.index %} {% include "partials/formatted_arguments.html" %} {% endwith %}
{% else %}

No active calls for this task.

{% endif %}
{% endblock %}