From 3c416e264a42fbfcc6a40534b077e038c81f0a02 Mon Sep 17 00:00:00 2001 From: Mudit Agarwal Date: Thu, 11 Jun 2020 06:30:10 +0530 Subject: [PATCH] rbd: minor fixes in error.go 1. Generalize the message for ErrNoIOContext 2. Fixed a typo Signed-off-by: Mudit Agarwal muagarwa@redhat.com --- rbd/errors.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rbd/errors.go b/rbd/errors.go index f9c0482..482d305 100644 --- a/rbd/errors.go +++ b/rbd/errors.go @@ -52,11 +52,11 @@ func getErrorIfNegative(ret C.int) error { var ( // ErrNoIOContext may be returned if an api call requires an IOContext and // it is not provided. - ErrNoIOContext = errors.New("RBD image does not have an IOContext") + ErrNoIOContext = errors.New("IOContext is missing") // ErrNoName may be returned if an api call requires a name and it is // not provided. ErrNoName = errors.New("RBD image does not have a name") - // ErrSnapshotNoName may be returned if an aip call requires a snapshot + // ErrSnapshotNoName may be returned if an api call requires a snapshot // name and it is not provided. ErrSnapshotNoName = errors.New("RBD snapshot does not have a name") // ErrImageNotOpen may be returned if an api call requires an open image handle and one is not provided.