瀏覽代碼

Stop using deprecated `vars` variable for matrix-element-call

pull/4778/head
Kim Brose 3 月之前
committed by Slavi Pantaleev
父節點
當前提交
f8f7406c51
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      roles/custom/matrix-element-call/tasks/validate_config.yml

+ 1
- 1
roles/custom/matrix-element-call/tasks/validate_config.yml 查看文件

@@ -17,7 +17,7 @@
ansible.builtin.fail:
msg: >
You need to define a required configuration setting (`{{ item.name }}`).
when: "item.when | bool and vars[item.name] | string | length == 0"
when: "item.when | bool and lookup('vars', item.name, default='') | string | length == 0"
with_items:
- {'name': 'matrix_element_call_container_network', when: true}
- {'name': 'matrix_element_call_hostname', when: true}


Loading…
取消
儲存