diff --git a/upgrade_test.py b/upgrade_test.py index a773b66336..d73ead265d 100644 --- a/upgrade_test.py +++ b/upgrade_test.py @@ -692,11 +692,12 @@ def test_rolling_upgrade(self): # pylint: disable=too-many-locals,too-many-stat assert all(tables_upgraded), "Failed to upgrade the sstable format {}".format(tables_upgraded) # Verify sstabledump - InfoEvent(message='Starting sstabledump to verify correctness of sstables').publish() - self.db_cluster.nodes[0].remoter.run( - 'for i in `sudo find /var/lib/scylla/data/keyspace_complex/ -type f |grep -v manifest.json |' - 'grep -v snapshots |head -n 1`; do echo $i; sudo sstabledump $i 1>/tmp/sstabledump.output || ' - 'exit 1; done', verbose=True) + if self.params.get("cluster_backend") != "azure": + InfoEvent(message='Starting sstabledump to verify correctness of sstables').publish() + self.db_cluster.nodes[0].remoter.run( + 'for i in `sudo find /var/lib/scylla/data/keyspace_complex/ -type f |grep -v manifest.json |' + 'grep -v snapshots |head -n 1`; do echo $i; sudo sstabledump $i 1>/tmp/sstabledump.output || ' + 'exit 1; done', verbose=True) InfoEvent(message='Step8 - Run stress and verify after upgrading entire cluster').publish() InfoEvent(message='Starting verification stresses after cluster upgrade').publish()