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
When the concurrency limit (N8N_CONCURRENCY_PRODUCTION_LIMIT) is set above 10 (e.g: 50), the frontend always shows a maximum of 10 active executions, even if more are running.
E.g:
The tooltip in the executions tab only displays 10 out of 50 running executions.
The tooltip shown in the image above is in the ConcurrentExecutionsHeader.vue component. It appears the running execution count is calculated based on the results from the fetchExecutions function in executions.store.ts. The fetchExecutions function seems to impose a 10 items per page limit, which results in always showing 10 as the total running executions (shown below).
To Reproduce
Set N8N_CONCURRENCY_PRODUCTION_LIMIT to a value greater than 10 (e.g., 50).
Trigger enough executions to exceed the concurrency limit (e.g., send 100 simultaneous requests if the limit is 50).
Go to the frontend and observe the active executions count in the tooltip.
The tooltip will only show 10 active executions, even though more are running.
Expected behavior
The frontend should display the actual number of active executions, reflecting the total number of running executions. The tooltip should show the correct count of active executions based on the actual running executions, rather than being capped at 10.
Operating System
Ubuntu Linux 22.04
n8n Version
1.81.4
Node.js Version
20.10.0
Database
PostgreSQL
Execution mode
main (default)
The text was updated successfully, but these errors were encountered:
Bug Description
When the concurrency limit (N8N_CONCURRENCY_PRODUCTION_LIMIT) is set above 10 (e.g: 50), the frontend always shows a maximum of 10 active executions, even if more are running.
E.g:

The tooltip in the executions tab only displays 10 out of 50 running executions.
The tooltip shown in the image above is in the ConcurrentExecutionsHeader.vue component. It appears the running execution count is calculated based on the results from the fetchExecutions function in executions.store.ts. The fetchExecutions function seems to impose a 10 items per page limit, which results in always showing 10 as the total running executions (shown below).
To Reproduce
Set N8N_CONCURRENCY_PRODUCTION_LIMIT to a value greater than 10 (e.g., 50).
Trigger enough executions to exceed the concurrency limit (e.g., send 100 simultaneous requests if the limit is 50).
Go to the frontend and observe the active executions count in the tooltip.
The tooltip will only show 10 active executions, even though more are running.
Expected behavior
The frontend should display the actual number of active executions, reflecting the total number of running executions. The tooltip should show the correct count of active executions based on the actual running executions, rather than being capped at 10.
Operating System
Ubuntu Linux 22.04
n8n Version
1.81.4
Node.js Version
20.10.0
Database
PostgreSQL
Execution mode
main (default)
The text was updated successfully, but these errors were encountered: