change the driver redirect timeout to 5 minute ; change the auth plugin white list...
authorzhouruiyu <zhouruiyu@huawei.com>
Mon, 31 Oct 2016 08:51:39 +0000 (16:51 +0800)
committerzhouruiyu <zhouruiyu@huawei.com>
Mon, 31 Oct 2016 08:51:39 +0000 (16:51 +0800)
https://jira.open-o.org/browse/OCS-142

Change-Id: Ifbb83e8f8b7eefc273dc448420e2d9c1eb91fd65
Signed-off-by: zhouruiyu <zhouruiyu@huawei.com>
msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/plugins/auth.lua
msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/plugins/driver_manager.lua

index 6eafc61..8e0624b 100644 (file)
@@ -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)
index fac8a64..45d327d 100644 (file)
@@ -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