Skip to content

Commit

Permalink
fix(upload-notes): fixed rabbit connection
Browse files Browse the repository at this point in the history
  • Loading branch information
EchoSkorJjj committed Apr 23, 2024
1 parent 3f42cc6 commit 3a375bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions backend/complex/upload-notes/.env
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ RABBITMQ_HOST=rabbitmq
RABBITMQ_PORT=5672
RABBITMQ_USERNAME=user
RABBITMQ_PASSWORD=password
RABBITMQ_SSL_ENABLED=false
FILE_PROCESSOR_ADDR=pdf-reader:50053
NOTE_SERVER_ADDR=notes-service:50052
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ spring.rabbitmq.host=${RABBITMQ_HOST}
spring.rabbitmq.port=${RABBITMQ_PORT}
spring.rabbitmq.username=${RABBITMQ_USERNAME}
spring.rabbitmq.password=${RABBITMQ_PASSWORD}
spring.rabbitmq.ssl.enabled=${RABBITMQ_SSL_ENABLED:false}
spring.rabbitmq.ssl.algorithm=TLSv1.2
# RabbitMQ exchange and routing key
app.rabbitmq.exchange=my_exchange
app.rabbitmq.routingkey1=my_routing_key_1
Expand Down

0 comments on commit 3a375bb

Please sign in to comment.