Skip to content

Commit

Permalink
Include attempted url in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewmcneely committed Jan 14, 2025
1 parent 76ee539 commit 33e53ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dgraphtest/local_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ func (c *LocalCluster) HealthCheck(zeroOnly bool) error {
func (c *LocalCluster) containerHealthCheck(url func(c *LocalCluster) (string, error)) error {
endpoint, err := url(c)
if err != nil {
return errors.Wrap(err, "error getting health URL")
return errors.Wrapf(err, "error getting health URL %v", endpoint)
}

for range 60 {
Expand Down

0 comments on commit 33e53ab

Please sign in to comment.