Skip to content

Commit 1b9b07a

Browse files
committed
cannot have comments in multiline commands
1 parent b7237c4 commit 1b9b07a

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

tests/templates/kuttl/snapshot-export/30_test-export.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ hbase shell create-snapshot.hbase 2>&1 | \
1313
grep '=> \["snap"\]' > /dev/null
1414

1515
# Export local snapshot to S3
16+
# --no-checksum-verify is needed for HBase 2.6.1 until this is fixed: https://issues.apache.org/jira/browse/HBASE-28998
1617
export-snapshot-to-s3 \
17-
--no-checksum-verify \ # needed for HBase 2.6.1 until this is fixed: https://issues.apache.org/jira/browse/HBASE-28998
18+
--no-checksum-verify \
1819
--snapshot snap \
1920
--copy-to s3a://hbase/snap \
2021
--overwrite 2>&1 | \
@@ -25,8 +26,9 @@ hbase shell delete-snapshot.hbase 2>&1 | \
2526
grep '=> \[\]' > /dev/null
2627

2728
# Import snapshot from S3
29+
# --no-checksum-verify is needed for HBase 2.6.1 until this is fixed: https://issues.apache.org/jira/browse/HBASE-28998
2830
export-snapshot-to-s3 \
29-
--no-checksum-verify \ # needed for HBase 2.6.1 until this is fixed: https://issues.apache.org/jira/browse/HBASE-28998
31+
--no-checksum-verify \
3032
--snapshot snap \
3133
--copy-from s3a://hbase/snap \
3234
--copy-to hdfs://test-hdfs/hbase \

0 commit comments

Comments
 (0)