reference: splitDockerDomain: remove incorrect "TODO"
My mistake; I added this TODO in 552b1526c6
, but it
only applies to familiarizeName.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
85d4039064
commit
8163e20c6f
1 changed files with 0 additions and 5 deletions
|
@ -96,11 +96,6 @@ func splitDockerDomain(name string) (domain, remainder string) {
|
|||
if domain == legacyDefaultDomain {
|
||||
domain = defaultDomain
|
||||
}
|
||||
// TODO(thaJeztah): this check may be too strict, as it assumes the
|
||||
// "library/" namespace does not have nested namespaces. While this
|
||||
// is true (currently), technically it would be possible for Docker
|
||||
// Hub to use those (e.g. "library/distros/ubuntu:latest").
|
||||
// See https://github.com/distribution/distribution/pull/3769#issuecomment-1302031785.
|
||||
if domain == defaultDomain && !strings.ContainsRune(remainder, '/') {
|
||||
remainder = officialRepoPrefix + remainder
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue