mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-08-15 11:46:06 +00:00
Fix typo: replace ; with :
This commit replaces a ; with a : in an error message Signed-off-by: Shubham <shubham@linux.com>
This commit is contained in:
@@ -122,7 +122,7 @@ Loop:
|
||||
if resp.StatusCode != http.StatusOK {
|
||||
body, err := ioutil.ReadAll(resp.Body)
|
||||
if err != nil {
|
||||
return errors.Wrapf(err, "request failed; unable to decode response body")
|
||||
return errors.Wrapf(err, "request failed: unable to decode response body")
|
||||
}
|
||||
|
||||
return errors.Errorf("request failed: %v", string(body))
|
||||
|
||||
Reference in New Issue
Block a user