I have a background process that only has 1 action (delay 10 seconds). This background process is linked to a queue trigger.
when i added 2 items to the queue it triggered 2 jobs, however they are running sequentially and not at the same time. Whats the reason for this?? I thought background processes can run in the same machine concurrently
As per my understanding, the background process can invoke multiple workflows within a single process using the use parallel activivty. Here as you are using Queue based approach it may be executed one by one.