Skip to content

Commit

Permalink
Update default for notification_async to false
Browse files Browse the repository at this point in the history
  • Loading branch information
tejash-jl committed Jun 29, 2023
1 parent 450aa4a commit 16acd67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ services:
- redis_host=redis
- redis_port=6379
- manager_type=${MANAGER_TYPE-DefinitionsManager}
- notification_async_enabled=${NOTIFICATION_ASYNC_ENABLED-true}
- notification_async_enabled=${NOTIFICATION_ASYNC_ENABLED-false}
- notification_enabled=${NOTIFICATION_ENABLED-false}
- notification_url=${NOTIFICATION_URL-http://notification-ms:8765/notification-service/v1/notification}
ports:
Expand Down
2 changes: 1 addition & 1 deletion java/registry/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ notification:
connection_url: ${notification_url:http://localhost:8765/notification-service/v1/notification}
health_url: ${notification_url:http://localhost:8765/notification-service/v1/health}
async:
enabled: ${notification_async_enabled:true}
enabled: ${notification_async_enabled:false}
topic: ${notification_topic:notify}

invite:
Expand Down

0 comments on commit 16acd67

Please sign in to comment.