From 81da9ad83af8640e8251d273b043af702c6ed96d Mon Sep 17 00:00:00 2001 From: Yuzerion Date: Wed, 18 Sep 2024 09:10:41 +0800 Subject: [PATCH] small fix --- src/proxy/provider/docker_provider.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proxy/provider/docker_provider.go b/src/proxy/provider/docker_provider.go index 2fada9b..db9b644 100755 --- a/src/proxy/provider/docker_provider.go +++ b/src/proxy/provider/docker_provider.go @@ -93,7 +93,7 @@ func (p *DockerProvider) getEntriesFromLabels(container *types.Container, client if l, ok := container.Labels[D.NSProxy+".aliases"]; ok { aliases = PT.NewAliases(l) - delete(container.Labels, D.NSProxy+"proxy.aliases") + delete(container.Labels, D.NSProxy+".aliases") } else { aliases = PT.NewAliases(mainAlias) }