Skip to content

Commit

Permalink
fix(test): adapt to cargo make private (#10298)
Browse files Browse the repository at this point in the history
  • Loading branch information
zwang28 authored Jun 13, 2023
1 parent 2f92852 commit 6347fa9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/storage/backup/integration_tests/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ set -eo pipefail
[ -n "${BACKUP_TEST_RW_ALL_IN_ONE}" ]

function stop_cluster() {
cargo make k 1>/dev/null 2>&1 || true
cargo make --allow-private k 1>/dev/null 2>&1 || true
}

function clean_all_data {
cargo make clean-data 1>/dev/null 2>&1
cargo make --allow-private clean-data 1>/dev/null 2>&1
}

function clean_etcd_data() {
cargo make clean-etcd-data 1>/dev/null 2>&1
cargo make --allow-private clean-etcd-data 1>/dev/null 2>&1
}

function start_cluster() {
Expand Down

0 comments on commit 6347fa9

Please sign in to comment.