From 6ad61b5bbbc73624b000027ae6ede63fcc52b2ad Mon Sep 17 00:00:00 2001 From: igurucelain Date: Tue, 4 Jul 2023 08:40:57 +0200 Subject: [PATCH] remove debug logs --- rootfs/etc/nginx/lua/stratio_auth.lua | 4 ---- 1 file changed, 4 deletions(-) diff --git a/rootfs/etc/nginx/lua/stratio_auth.lua b/rootfs/etc/nginx/lua/stratio_auth.lua index 4d49bf6f4c..53bbd2e2bc 100644 --- a/rootfs/etc/nginx/lua/stratio_auth.lua +++ b/rootfs/etc/nginx/lua/stratio_auth.lua @@ -163,10 +163,6 @@ function _M.create_cookie(userinfo_url, oauth2_cookie_name, stratio_cookie_name, } req_cookie:set(tenant_cookie_data) ngx.log(ngx.DEBUG, 'Adding cookies to request') - -- TODO REMOVE BEFORE MERGE - ngx.log(ngx.STDERR, 'COOKIE NAME: ',tenant_cookie_name) - ngx.log(ngx.STDERR, 'DEFAULT TENANT: ',tenant) - -- UNTIL HERE ngx.req.set_header("Cookie", stratio_cookie_name .. "=" .. stratio_jwt .. ";" .. ngx.var.http_cookie);