Commit 4e29d083 authored by gwenn's avatar gwenn

Misc

parent 2b3a2cc7
......@@ -1146,7 +1146,7 @@ func (c *Conn) IntegrityCheck(max int, quick bool) error {
return errors.New("Integrity check failed (null result)")
}
if msg != "ok" {
return errors.New(msg)
return fmt.Errorf("Integrity check failed (%s)", msg)
}
return nil
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment