Skip to content

Commit

Permalink
MB-47395 Correct typo in message.
Browse files Browse the repository at this point in the history
Change-Id: Ic95874f3f5c66fbc6051bd7578446c312d779ba2
Reviewed-on: http://review.couchbase.org/c/go-couchbase/+/157534
Reviewed-by: Sitaram Vemulapalli <sitaram.vemulapalli@couchbase.com>
Tested-by: Donald Haggart <donald.haggart@couchbase.com>
  • Loading branch information
dhaggart committed Jul 14, 2021
1 parent 74908f5 commit 118e3f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client.go
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,9 @@ func (b *Bucket) Do2(k string, f func(mc *memcached.Client, vb uint16) error, de
if err == "" {
err = fmt.Sprintf("KV status %v", resp.Status)
}
return fmt.Errorf("unable to complete action after %v attemps: %v", maxTries, err)
return fmt.Errorf("unable to complete action after %v attempts: %v", maxTries, err)
} else {
return fmt.Errorf("unable to complete action after %v attemps: %v", maxTries, lastError)
return fmt.Errorf("unable to complete action after %v attempts: %v", maxTries, lastError)
}
}

Expand Down

0 comments on commit 118e3f0

Please sign in to comment.