mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
fix unneeded commits
This commit is contained in:
parent
d506d833d9
commit
a9abc8a281
2 changed files with 3 additions and 11 deletions
|
@ -16,14 +16,14 @@
|
||||||
- version
|
- version
|
||||||
register: primary_info
|
register: primary_info
|
||||||
|
|
||||||
|
|
||||||
- name: Assert that test container runs the expected MySQL/MariaDB version
|
- name: Assert that test container runs the expected MySQL/MariaDB version
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- registred_db_version == db_version_value
|
- registred_db_version == db_version_value
|
||||||
vars:
|
vars:
|
||||||
registred_db_version: "'{{ primary_info.version.major }}.{{ primary_info.version.minor }}\
|
registred_db_version:
|
||||||
.{{ primary_info.version.release }}'"
|
"{{ primary_info.version.major }}.{{ primary_info.version.minor }}\
|
||||||
|
.{{ primary_info.version.release }}"
|
||||||
db_version_value: "'{{ db_version }}'"
|
db_version_value: "'{{ db_version }}'"
|
||||||
|
|
||||||
- name: Assert that mysql_info module used the expected version of pymysql
|
- name: Assert that mysql_info module used the expected version of pymysql
|
||||||
|
|
|
@ -84,10 +84,6 @@
|
||||||
mysql_primary_port_value: '{{ mysql_primary_port }}'
|
mysql_primary_port_value: '{{ mysql_primary_port }}'
|
||||||
test_channel_value: '{{ test_channel }}'
|
test_channel_value: '{{ test_channel }}'
|
||||||
when: mysql8022_and_higher == false
|
when: mysql8022_and_higher == false
|
||||||
vars:
|
|
||||||
mysql_host_value: '{{ mysql_host }}'
|
|
||||||
mysql_primary_port_value: '{{ mysql_primary_port }}'
|
|
||||||
test_channel_value: '{{ test_channel }}'
|
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
|
@ -104,10 +100,6 @@
|
||||||
mysql_primary_port_value: '{{ mysql_primary_port }}'
|
mysql_primary_port_value: '{{ mysql_primary_port }}'
|
||||||
test_channel_value: '{{ test_channel }}'
|
test_channel_value: '{{ test_channel }}'
|
||||||
when: mysql8022_and_higher == true
|
when: mysql8022_and_higher == true
|
||||||
vars:
|
|
||||||
mysql_host_value: '{{ mysql_host }}'
|
|
||||||
mysql_primary_port_value: '{{ mysql_primary_port }}'
|
|
||||||
test_channel_value: '{{ test_channel }}'
|
|
||||||
|
|
||||||
|
|
||||||
# Test stopreplica mode:
|
# Test stopreplica mode:
|
||||||
|
|
Loading…
Add table
Reference in a new issue