Skip to content

Commit

Permalink
Merge pull request #42 from mairess/deploy
Browse files Browse the repository at this point in the history
Add KAFKA_PORT variable
  • Loading branch information
mairess authored Oct 15, 2024
2 parents 3c553a1 + 6729a48 commit acbffc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/src/main/resources/application-prod.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ api.security.token.secret=${JWT_SECRET}
# kafka configuration
kafka.topic.password-reset=${KAFKA_TOPIC_PASSWORD_RESET}
kafka.topic.password-reset-confirmation=${KAFKA_TOPIC_PASSWORD_RESET_CONFIRMATION}
spring.kafka.bootstrap-servers=${KAFKA_HOST}:9092
spring.kafka.bootstrap-servers=${KAFKA_HOST}:${KAFKA_PORT}
2 changes: 1 addition & 1 deletion ms-email/src/main/resources/application-prod.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# kafka configuration
kafka.topic.password-reset=${KAFKA_TOPIC_PASSWORD_RESET}
kafka.topic.password-reset-confirmation=${KAFKA_TOPIC_PASSWORD_RESET_CONFIRMATION}
spring.kafka.bootstrap-servers=${KAFKA_HOST}:9092
spring.kafka.bootstrap-servers=${KAFKA_HOST}:${KAFKA_PORT}
# JavaMailSender configurations
spring.mail.host=${MAIL_HOST}
spring.mail.port=${MAIL_PORT}
Expand Down

0 comments on commit acbffc5

Please sign in to comment.