Merge "Fix Grafana datasource update"

This commit is contained in:
Zuul 2020-06-15 13:58:30 +00:00 committed by Gerrit Code Review
commit d6b2f5e69c
3 changed files with 7 additions and 2 deletions

View File

@ -29,7 +29,7 @@
run_once: True
changed_when: response.status == 200
failed_when: response.status not in [200, 409] or
response.status == 409 and ("Data source with same name already exists" not in response.json.message|default(""))
response.status == 409 and ("name already exists" not in response.json.message|default(""))
with_dict: "{{ grafana_data_sources }}"
when: item.value.enabled | bool

View File

@ -115,6 +115,6 @@
changed_when: monasca_grafana_datasource_response.status == 200
failed_when: monasca_grafana_datasource_response.status not in [200, 409] or
(monasca_grafana_datasource_response.status == 409 and
"Data source with same name already exists" not in monasca_grafana_datasource_response.json.message|default(""))
"name already exists" not in monasca_grafana_datasource_response.json.message|default(""))
with_dict: "{{ monasca_grafana_data_sources }}"
when: item.value.enabled | bool

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Fixes Grafana datasource update.
`LP#1881890 <https://launchpad.net/bugs/1881890>`__