Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
GuptaManan100 committed Nov 6, 2024
1 parent e1dc25b commit 82f9625
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions go/test/endtoend/cluster/vtadmin_process.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,11 @@ func (vp *VtAdminProcess) Setup() (err error) {
go func() {
if vp.proc != nil {
exitErr := vp.proc.Wait()
if exitErr != nil {
log.Errorf("vtadmin process exited with error: %v", exitErr)
data, _ := os.ReadFile(logFile)
log.Errorf("vtadmin stderr - %s", string(data))
}
//if exitErr != nil {
log.Errorf("vtadmin process exited with error: %v", exitErr)
data, _ := os.ReadFile(logFile)
log.Errorf("vtadmin stderr - %s", string(data))
//}
vp.exit <- exitErr
close(vp.exit)
}
Expand Down

0 comments on commit 82f9625

Please sign in to comment.