mirror of
https://github.com/goharbor/harbor
synced 2025-04-08 20:00:56 +00:00
Passing tag as a parameter or the value will be overwritten
This commit is contained in:
parent
f8af1f275e
commit
7da89ec39b
|
@ -264,8 +264,8 @@ func (ra *RepositoryAPI) Delete() {
|
|||
}
|
||||
log.Infof("delete tag: %s:%s", repoName, t)
|
||||
|
||||
go func() {
|
||||
image := repoName + ":" + t
|
||||
go func(tag string) {
|
||||
image := repoName + ":" + tag
|
||||
err := notifier.Publish(topic.ReplicationEventTopicOnDeletion, notification.OnDeletionNotification{
|
||||
Image: image,
|
||||
})
|
||||
|
@ -274,7 +274,7 @@ func (ra *RepositoryAPI) Delete() {
|
|||
return
|
||||
}
|
||||
log.Debugf("the on deletion topic for resource %s published", image)
|
||||
}()
|
||||
}(t)
|
||||
|
||||
go func(tag string) {
|
||||
if err := dao.AddAccessLog(models.AccessLog{
|
||||
|
|
Loading…
Reference in New Issue
Block a user