Skip to content

Commit

Permalink
molecule: Set force_schema_commit_log to true
Browse files Browse the repository at this point in the history
In the latest OSS version (5.4.0), if we use the defaults from Scylla
we'll see the following error:
`init - Bad configuration: consistent_cluster_management requires schema commit log to be enabled`

This happens because consistent_cluster_management is set to true
and force_schema_commit_log is set to false by default.

This PR fixes this error in our CI by setting force_schema_commit_log
to true in scylla_yaml_params.

Ref: scylladb/scylladb#16427
  • Loading branch information
igorribeiroduarte authored and vladzcloudius committed Jan 24, 2024
1 parent 0cc4515 commit 87303b2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ansible-scylla-node/molecule/ubuntu2004/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ provisioner:
# skip_ntp: True
skip_swap: True
scylla_manager_deb_repo_url: "http://downloads.scylladb.com/deb/ubuntu/scylladb-manager-2.6-bionic.list"
scylla_yaml_params:
force_schema_commit_log: true
consistent_cluster_management: true
playbooks:
converge: ../shared/converge.yml
prepare: ../shared/prepare.yml
Expand Down

0 comments on commit 87303b2

Please sign in to comment.