Skip to content

Commit

Permalink
align tests with CASSANDRA-19393
Browse files Browse the repository at this point in the history
  • Loading branch information
smiklosovic committed Mar 14, 2024
1 parent 44596ee commit 505e78c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion upgrade_tests/storage_engine_upgrade_test.py
Expand Up @@ -70,7 +70,7 @@ def _do_upgrade(self, login_keyspace=True):
self.install_legacy_parsing(node1)
node1.start(wait_for_binary_proto=True)
if node1.get_cassandra_version() >= '5.1':
node1.nodetool("initializecms")
node1.nodetool("cms initialize")
if self.fixture_dtest_setup.bootstrap:
cluster.set_install_dir(install_dir=self.fixture_dtest_setup.default_install_dir)
self.install_nodetool_legacy_parsing()
Expand Down
2 changes: 1 addition & 1 deletion upgrade_tests/upgrade_through_versions_test.py
Expand Up @@ -500,7 +500,7 @@ def upgrade_scenario(self, populate=True, create_schema=True, rolling=False, aft
self._check_select_count()

if self.cluster.version() >= '5.1':
self.cluster.nodelist()[0].nodetool("initializecms")
self.cluster.nodelist()[0].nodetool("cms initialize")
# run custom post-upgrade callables
for call in after_upgrade_call:
call()
Expand Down

0 comments on commit 505e78c

Please sign in to comment.