Key returns unique key identifying PublishedRepo
()
| 609 | |
| 610 | // Key returns unique key identifying PublishedRepo |
| 611 | func (p *PublishedRepo) Key() []byte { |
| 612 | return []byte("U" + p.StoragePrefix() + ">>" + p.Distribution) |
| 613 | } |
| 614 | |
| 615 | // PrefixPoolLockKey returns the task-queue resource key that serialises all |
| 616 | // publish operations sharing the same pool directory under storagePrefix. |
no test coverage detected