From edf7d046eb49f0cade4efdec537646c625fce310 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Wed, 25 Oct 2023 12:00:00 +0800 Subject: [PATCH] Fix outbound not found message --- box_outbound.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/box_outbound.go b/box_outbound.go index ed96cd84..676ae7af 100644 --- a/box_outbound.go +++ b/box_outbound.go @@ -69,7 +69,7 @@ func (s *Box) startOutbounds() error { } problemOutbound := outbounds[problemOutboundTag] if problemOutbound == nil { - return E.New("dependency[", problemOutbound, "] not found for outbound[", outboundTags[oCurrent], "]") + return E.New("dependency[", problemOutboundTag, "] not found for outbound[", outboundTags[oCurrent], "]") } return lintOutbound(append(oTree, problemOutboundTag), problemOutbound) }