Skip to content

Commit

Permalink
fix conflicts and its tests
Browse files Browse the repository at this point in the history
  • Loading branch information
chobits committed Jul 11, 2024
1 parent dd26cf2 commit b69ec7f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ for _, strategy in helpers.each_strategy() do
-- intentionally trigger a DNS query error
local service = bp.services:insert({
name = "inexist-host-service",
host = "really-inexist-host",
host = "really-inexist-host.test",
port = 80,
})

Expand Down Expand Up @@ -558,7 +558,7 @@ for _, strategy in helpers.each_strategy() do
local dns_spans = assert_has_spans("kong.dns", spans)
local upstream_dns
for _, dns_span in ipairs(dns_spans) do
if dns_span.attributes["dns.record.domain"] == "really-inexist-host" then
if dns_span.attributes["dns.record.domain"] == "really-inexist-host.test" then
upstream_dns = dns_span
break
end
Expand Down

0 comments on commit b69ec7f

Please sign in to comment.