Skip to content

Commit

Permalink
fix(nemesis): fix typo in the 'mgmt_restore' nemesis
Browse files Browse the repository at this point in the history
vponomaryov committed Jan 20, 2025
1 parent ca7cb25 commit b35ae2e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sdcm/nemesis.py
Original file line number Diff line number Diff line change
@@ -3069,7 +3069,8 @@ def execute_data_validation_thread(command_template, keyspace_name, number_of_ro
"https://github.com/scylladb/scylla-manager/issues/3829",
"https://github.com/scylladb/scylla-manager/issues/4049"
]
is_multi_dc = (len(self.cluster.params.region_names) > 1) or ((self.params.get("simulated_regions") or 0) > 1)
is_multi_dc = len(self.cluster.params.region_names) > 1 or (
self.cluster.params.get("simulated_regions") or 0) > 1
if SkipPerIssues(skip_issues, params=self.tester.params) and is_multi_dc:
raise UnsupportedNemesis("MultiDC cluster configuration is not supported by this nemesis")

0 comments on commit b35ae2e

Please sign in to comment.