Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion upgrade_tests/upgrade_through_versions_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,9 @@ def upgrade_to_version(self, version_meta, partial=False, nodes=None, internode_
# Setup log4j / logback again (necessary moving from 2.0 -> 2.1):
node.set_log_level("INFO")
node.start(wait_other_notice=400, wait_for_binary_proto=True,
jvm_args=['-Dcassandra.disable_max_protocol_auto_override=true']) # prevent protocol capping in mixed version clusters
jvm_args = ['-Dcassandra.disable_max_protocol_auto_override=true', # prevent protocol capping in mixed version clusters
'-Dcassandra.shadow_round_timeout_millis=100']) # gossip to construct initial ClusterMetadata will fail on the
# first node as everything is down
node.nodetool('upgradesstables -a')

def _log_current_ver(self, current_version_meta):
Expand Down