- Status
- {{ confdata.status.upper() }}
- Executor
-
{{ confdata.executor }}{% if confdata.executor == 'RQExecutor' %} Production Mode (Redis Queue) {% elif confdata.executor == 'InlineExecutor' %} Test/Dev Mode (Synchronous) {% endif %}
Current state of the event processing system
{{ confdata.executor }}
{% if confdata.executor == 'RQExecutor' %}
Production Mode (Redis Queue)
{% elif confdata.executor == 'InlineExecutor' %}
Test/Dev Mode (Synchronous)
{% endif %}
Event types that trigger background processing (emails, webhooks, etc.)
| # | Event Type | Webhook Support | Category |
|---|---|---|---|
| {{ loop.index }} | {{ event_type }} |
{% if event_type in confdata.webhook_enabled_types %} ✓ {% else %} X {% endif %} | {% set prefix = event_type.split('_')[0] %} {{ prefix|title }} |
Event types available for external webhook subscriptions
{{ event_type }}
Handler Registry: Only event types with registered handlers trigger background processing.
High-frequency events (e.g., ANSWER_UPDATED) are intentionally excluded to prevent
performance issues.
Executor Mode:
InlineExecutor processes events synchronously (testing/development), while
RQExecutor enqueues jobs to Redis Queue for asynchronous processing (production).