Skip to content

Commit

Permalink
Bug/191 fix database sanity test (#430)
Browse files Browse the repository at this point in the history
* Revert "Bug/issue#383 (#411)"

This reverts commit d1a0016.

* Fix Properties map

* Skip jelkyll check on database sanity test build issue

---------

Co-authored-by: Pradeepsingh Bhati <[email protected]>
  • Loading branch information
alaa-bish and bhati-pradeep authored Nov 7, 2023
1 parent 1749b84 commit 4a4a1f6
Showing 1 changed file with 7 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -279,16 +279,14 @@
properties: "{}"
when: properties is undefined

- name: Combine properties
block:
- set_fact:
temp_dict: "{ '{{' }} item['name']: item['value'] {{ '}}' }}"
- set_fact:
properties: "{{ properties | combine(temp_dict) }}"
loop: "{{ result.response.properties }}"
# skip jekyll/Liquid syntax check
#
- name: create properties map
set_fact:
properties: "{{ properties | combine ({ item['name'] : item['value'] }) }}"
loop: "{{result.response.properties}}"
no_log: true


#

- name: Creation Status
assert:
Expand Down

0 comments on commit 4a4a1f6

Please sign in to comment.