{% extends "base.html" %} {% block content %}
Task Details Back to Tasks
Task ID: {{ task.task_id }}
Basic Information
Module: {{ task_extra.module }}
Function: {{ task_extra.func_qualname }}
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_extra.retry_for|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.split('#')[-1][:8] if '#' in call.call_id else call.call_id[:8] }}... {% 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 %}