Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion apisix/core/config_xds.lua
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,9 @@ function _M.new(key, opts)
err = ok2
end

if err then
-- "no keys" means the xds key has no data yet, not a failure; the
-- periodic fetch loop above already treats it as non-error
if err and err ~= "no keys" then
log.error("failed to fetch data from xds ",
err, ", ", key)
end
Expand Down
Loading