File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ jobs:
18
18
os : [ubuntu-22.04]
19
19
runs-on : ${{ matrix.os }}
20
20
services :
21
- rabbitmq-streaming :
21
+ rabbitmq-server :
22
22
image : rabbitmq:4.0.3-management
23
- env :
24
- RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS : " -rabbitmq_stream advertised_host localhost"
23
+ # env:
24
+ # RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS: "-rabbitmq_stream advertised_host localhost"
25
25
ports :
26
26
- 5672:5672
27
27
- 15672:15672
37
37
virtualenvs-create : true
38
38
virtualenvs-in-project : false
39
39
- name : Enable RabbitMQ Plugins
40
- run : docker exec ${{ job.services.rabbitmq-streaming .id }} rabbitmq-plugins enable rabbitmq_stream rabbitmq_stream_management rabbitmq_amqp1_0
40
+ run : docker exec ${{ job.services.rabbitmq-server .id }} rabbitmq-plugins enable rabbitmq_stream rabbitmq_stream_management rabbitmq_amqp1_0
41
41
- name : poetry install
42
42
run : poetry install --no-root
43
43
- name : isort check-only
Original file line number Diff line number Diff line change 1
1
from proton .utils import BlockingConnection
2
2
3
3
4
+ # Temporary this will be replaced by our connection Deal when we start the implementation
5
+ # For the moment we just need a test to run poetry run pytest without failing
4
6
def test_connection () -> None :
5
7
BlockingConnection ("amqp://guest:guest@localhost:5672/" )
You can’t perform that action at this time.
0 commit comments