Skip to content

Commit 9325eee

Browse files
authored
br: remove go leak in test (pingcap#59967)
close pingcap#59969
1 parent 9679a3f commit 9325eee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

br/tests/br_test_utils.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ wait_log_checkpoint_advance() {
2525
i=0
2626
while true; do
2727
# extract the checkpoint ts of the log backup task. If there is some error, the checkpoint ts should be empty
28-
log_backup_status=$(unset BR_LOG_TO_TERM && run_br --skip-goleak --pd $PD_ADDR log status --task-name $task_name --json 2>br.log)
28+
log_backup_status=$(unset BR_LOG_TO_TERM && run_br --pd $PD_ADDR log status --task-name $task_name --json 2>br.log)
2929
echo "log backup status: $log_backup_status"
3030
local checkpoint_ts=$(echo "$log_backup_status" | head -n 1 | jq 'if .[0].last_errors | length == 0 then .[0].checkpoint else empty end')
3131
echo "checkpoint ts: $checkpoint_ts"

0 commit comments

Comments
 (0)