Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.

Commit 65a5585

Browse files
vladgetVolodymyr Hetmanshchuk
and
Volodymyr Hetmanshchuk
authored
Fixed bug which produce error: "The task includes an option with an undefined variable. The error was: float object has no element 0" in text vs float comparison (#63)
Co-authored-by: Volodymyr Hetmanshchuk <[email protected]>
1 parent 911f831 commit 65a5585

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tasks/install/dnf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
dnf:
3434
name: "{{ clickhouse_package | map('regex_replace', '$', '-' + clickhouse_version) | list }}"
3535
state: present
36-
disable_gpg_check: "{{ true if clickhouse_version == 19.4.0 else omit }}"
36+
disable_gpg_check: "{{ true if clickhouse_version == '19.4.0' else omit }}"
3737
become: true
3838
tags: [install]
3939
when: clickhouse_version != 'latest'

tasks/install/yum.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
yum:
3434
name: "{{ clickhouse_package | map('regex_replace', '$', '-' + clickhouse_version) | list }}"
3535
state: present
36-
disable_gpg_check: "{{ true if clickhouse_version == 19.4.0 else omit }}"
36+
disable_gpg_check: "{{ true if clickhouse_version == '19.4.0' else omit }}"
3737
become: true
3838
tags: [install]
3939
when: clickhouse_version != 'latest'

0 commit comments

Comments
 (0)