Skip to content

Commit

Permalink
Remove invalid wait from error log
Browse files Browse the repository at this point in the history
  • Loading branch information
mikusaq committed Jan 6, 2025
1 parent 07b5c35 commit 697633c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/bringauto_ssh/SSHSession.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ func (session *SSHSession) Wait() error {
}
err := session.sshSession.Wait()
if err != nil {
return fmt.Errorf("invalid wait - %s", err)
return err
}
return nil
}

0 comments on commit 697633c

Please sign in to comment.