From 93f00b2143d8057f01a42e0065047c1d9a7c28d5 Mon Sep 17 00:00:00 2001 From: Elvin Efendi Date: Sat, 13 Apr 2019 15:26:48 -0400 Subject: [PATCH] fix luacheck warning --- rootfs/etc/nginx/lua/certificate.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rootfs/etc/nginx/lua/certificate.lua b/rootfs/etc/nginx/lua/certificate.lua index 03b23de15..e07ebcb08 100644 --- a/rootfs/etc/nginx/lua/certificate.lua +++ b/rootfs/etc/nginx/lua/certificate.lua @@ -52,7 +52,8 @@ function _M.call() ngx.log(ngx.ERR, "error while obtaining hostname: " .. hostname_err) end if not hostname then - ngx.log(ngx.INFO, "obtained hostname is nil (the client does not support SNI?), falling back to default certificate") + ngx.log(ngx.INFO, + "obtained hostname is nil (the client does not support SNI?), falling back to default certificate") hostname = DEFAULT_CERT_HOSTNAME end