Use same DB
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Luke Murphy 2020-04-10 11:50:43 +02:00
parent 34899f34f2
commit 02433ec962
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ timezone = Europe/London
[alerta-mailer]
amqp_topic = notify
amqp_url = {{ db_type }}://{{ db_user }}:{{ db_passwd }}@{{ db_loc }}/kombu
amqp_url = {{ db_type }}://{{ db_user }}:{{ db_passwd }}@{{ db_loc }}/alerta
config_file = /app/alerta.conf
dashboard_url = https://{{ domain }}
debug = True

View File

@ -60,7 +60,7 @@ PLUGINS = [
"reject",
]
AMQP_URL = "{{ db_type }}://{{ db_user }}:{{ db_passwd }}@{{ db_loc }}/kombu"
AMQP_URL = "{{ db_type }}://{{ db_user }}:{{ db_passwd }}@{{ db_loc }}/alerta"
AMQP_TOPIC = "notify"
DATABASE_URL = "{{ db_type }}://{{ db_user }}:{{ db_passwd }}@{{ db_loc }}/{{ db_name }}"