Add missing space to error message (#9069)

This commit is contained in:
Kir Shatrov 2022-09-20 07:03:21 -04:00 committed by GitHub
parent c43f73bb09
commit 23ccac02cd

View file

@ -64,7 +64,7 @@ local function get_implementation(backend)
local implementation = IMPLEMENTATIONS[name]
if not implementation then
ngx.log(ngx.WARN, backend["load-balance"], "is not supported, ",
ngx.log(ngx.WARN, backend["load-balance"], " is not supported, ",
"falling back to ", DEFAULT_LB_ALG)
implementation = IMPLEMENTATIONS[DEFAULT_LB_ALG]
end