Skip to content

Commit

Permalink
test: run exclusive queue test in another instance
Browse files Browse the repository at this point in the history
Signed-off-by: mikeee <[email protected]>
  • Loading branch information
mikeee committed Jun 20, 2024
1 parent 4aa5fdb commit 94bf55a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ spec:
- name: queueName
value: exclusiveQueue
- name: host
value: "amqp://test:test@localhost:5672"
value: "amqp://test:test@localhost:5673"
- name: prefetchCount
value: 0
- name: exclusive
Expand Down
13 changes: 12 additions & 1 deletion tests/certification/bindings/rabbitmq/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,18 @@ services:
RABBITMQ_DEFAULT_USER: test
RABBITMQ_DEFAULT_PASS: test
hostname: rmq

rabbitmq-exclusive:
image: rabbitmq:3-management-alpine
container_name: 'rabbitmq-exclusive'
ports:
- 5673:5672
- 15673:15672
networks:
- rabbitmq_go_net
environment:
RABBITMQ_DEFAULT_USER: test
RABBITMQ_DEFAULT_PASS: test
hostname: rmqe
networks:
rabbitmq_go_net:
driver: bridge

0 comments on commit 94bf55a

Please sign in to comment.