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 7a18a07 commit 2a4215b
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ grpc.file.processor.server.address=${FILE_PROCESSOR_ADDR}
grpc.notes.server.address=${NOTE_SERVER_ADDR}

# application.properties
# spring.rabbitmq.host=${RABBITMQ_HOST}
# spring.rabbitmq.port=${RABBITMQ_PORT}
spring.rabbitmq.addresses=${RABBITMQ_HOST}
spring.rabbitmq.addresses=amqps://${RABBITMQ_HOST}:${RABBITMQ_PORT}
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}
spring.rabbitmq.ssl.algorithm=TLSv1.2
# RabbitMQ exchange and routing key
app.rabbitmq.exchange=my_exchange
Expand Down

0 comments on commit 2a4215b

Please sign in to comment.