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 fd9d0abb2c
commit 0f5bf530ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,7 +64,7 @@ local function get_implementation(backend)
local implementation = IMPLEMENTATIONS[name] local implementation = IMPLEMENTATIONS[name]
if not implementation then 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) "falling back to ", DEFAULT_LB_ALG)
implementation = IMPLEMENTATIONS[DEFAULT_LB_ALG] implementation = IMPLEMENTATIONS[DEFAULT_LB_ALG]
end end