From 82d735771cb9678cd8d5240fb9f434ae28eb1ac0 Mon Sep 17 00:00:00 2001 From: zhouruiyu Date: Mon, 31 Oct 2016 16:51:39 +0800 Subject: change the driver redirect timeout to 5 minute ; change the auth plugin white list path into portal-package. https://jira.open-o.org/browse/OCS-142 Change-Id: Ifbb83e8f8b7eefc273dc448420e2d9c1eb91fd65 Signed-off-by: zhouruiyu --- .../src/assembly/resources/openresty/nginx/luaext/plugins/auth.lua | 2 +- .../resources/openresty/nginx/luaext/plugins/driver_manager.lua | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/plugins/auth.lua b/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/plugins/auth.lua index 6eafc61..8e0624b 100644 --- a/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/plugins/auth.lua +++ b/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/plugins/auth.lua @@ -25,7 +25,7 @@ local redirect_url = "/openoui/common/login.html" local white_list= { auth_token_url, redirect_url, - '/openoui/common/' + '/portal-package/common/' }; local function verify_value(value) diff --git a/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/plugins/driver_manager.lua b/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/plugins/driver_manager.lua index fac8a64..45d327d 100644 --- a/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/plugins/driver_manager.lua +++ b/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/plugins/driver_manager.lua @@ -104,7 +104,9 @@ function _M.access() local actual_body = get_body_params() ngx.log(ngx.ERR, "HTTP request to driver... ", " Request to driver manager") - local res, err = http.new():request_uri(driver_url, { + local httpc = http.new(); + httpc:set_timeout(300000); + local res, err = httpc:request_uri(driver_url, { method = ngx.req.get_method(), body = actual_body, headers = actual_headers -- cgit 1.2.3-korg