Skip to content

Commit

Permalink
add log
Browse files Browse the repository at this point in the history
Signed-off-by: okJiang <[email protected]>
  • Loading branch information
okJiang committed Jul 22, 2024
1 parent 1a20c85 commit 1f7aa64
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/integrations/realcluster/reboot_pd_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ package realcluster

import (
"context"
"os"
"os/exec"
"testing"

Expand All @@ -26,6 +27,8 @@ import (
func restartTiUP() {
log.Info("start to restart TiUP")
cmd := exec.Command("make", "deploy")
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
err := cmd.Run()
if err != nil {
panic(err)
Expand Down

0 comments on commit 1f7aa64

Please sign in to comment.