We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c098211 commit 3e86314Copy full SHA for 3e86314
soci/artifacts.go
@@ -355,13 +355,13 @@ func (db *ArtifactsDb) RemoveArtifactEntryByIndexDigest(digest []byte) error {
355
356
dgstBucket := bucket.Bucket(digest)
357
if dgstBucket == nil {
358
- return fmt.Errorf("the index of the digest %v doesn't exist", digest)
+ return fmt.Errorf("the index of the digest %s doesn't exist", digest)
359
}
360
361
if indexBucket(dgstBucket) {
362
return bucket.DeleteBucket(digest)
363
364
- return fmt.Errorf("the digest %v does not correspond to an index", digest)
+ return fmt.Errorf("the digest %s does not correspond to an index", digest)
365
})
366
367
0 commit comments