Fix the formatting directives error during compilation
Signed-off-by: Sudeesh John <sudeesh@linux.vnet.ibm.com>
This commit is contained in:
parent
c1e1f3d6d9
commit
5a4f007e48
@ -94,7 +94,7 @@ This tool should be ran from the root of the project repository for a new releas
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
logrus.Info("Welcome to the %s release tool...", r.ProjectName)
|
||||
logrus.Infof("Welcome to the %s release tool...", r.ProjectName)
|
||||
previous, err := getPreviousDeps(r.Previous)
|
||||
if err != nil {
|
||||
return err
|
||||
|
@ -134,7 +134,7 @@ func checkContentLeased(ctx context.Context, db *DB, dgst digest.Digest) error {
|
||||
return db.View(func(tx *bolt.Tx) error {
|
||||
bkt := getBucket(tx, bucketKeyVersion, []byte(ns), bucketKeyObjectLeases, []byte(lease), bucketKeyObjectContent)
|
||||
if bkt == nil {
|
||||
return errors.Wrapf(errdefs.ErrNotFound, "bucket not found", lease)
|
||||
return errors.Wrapf(errdefs.ErrNotFound, "bucket not found %s", lease)
|
||||
}
|
||||
v := bkt.Get([]byte(dgst.String()))
|
||||
if v == nil {
|
||||
|
Loading…
Reference in New Issue
Block a user