Update error message in PGDump client's Ping function

This commit is contained in:
Luis Eduardo Jeréz Girón
2024-07-20 22:31:16 -06:00
parent e693d1e11f
commit 21fa0215b7

View File

@@ -68,7 +68,7 @@ func (Client) Ping(version PGVersion, connString string) error {
output, err := cmd.CombinedOutput()
if err != nil {
return fmt.Errorf(
"error running psql v%s: %s",
"error running psql ping v%s: %s",
version.Value.version, output,
)
}