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
Using the AMQP Consumer, I'm finding that this works great if the JMeter test plan only does one thing e.g.
Success Test
AMQP Publish - sends good message
AMQP Consumer - on a response queue with assertions for response message contents containing 'SUCCESS'
However if I then use a JMeter Simple Controller to group the above into a 'Success Test' then
create a second Simple Controller for 'Failure Test' that does the same only sends in a bad message.
Failure Test
3) AMQP Publish - bad message
4) AMQP Consumer on a response queue with assertions for response message containing 'FAILURE'.
Step 4 never gets the response message. That's because the AMQP Consumer from 2) is still active and there ends up being 2 consumers for the queue.
The above was all under ONE thread group, and executes serially.
So wondering how to get around this ?
How do I stop the first consumer ?
The text was updated successfully, but these errors were encountered:
Looks like a workaround is to use a separate ThreadGroup for each Test Suite (rather than a Simple Controller), then to also choose 'Run Thread Groups consecutively' to stop them running in parallel
Using the AMQP Consumer, I'm finding that this works great if the JMeter test plan only does one thing e.g.
Success Test
However if I then use a JMeter Simple Controller to group the above into a 'Success Test' then
create a second Simple Controller for 'Failure Test' that does the same only sends in a bad message.
Failure Test
3) AMQP Publish - bad message
4) AMQP Consumer on a response queue with assertions for response message containing 'FAILURE'.
Step 4 never gets the response message. That's because the AMQP Consumer from 2) is still active and there ends up being 2 consumers for the queue.
The above was all under ONE thread group, and executes serially.
So wondering how to get around this ?
How do I stop the first consumer ?
The text was updated successfully, but these errors were encountered: