Repository: incubator-ranger Updated Branches: refs/heads/ranger-0.6 2dea1f91c -> 351f870df
RANGER-1166 : Auto complete wait time needs to be increased on Ranger UI Signed-off-by: Velmurugan Periasamy <[email protected]> (cherry picked from commit 3eba2a1edadf7d1c706997401ba46cf13595e82a) Project: http://git-wip-us.apache.org/repos/asf/incubator-ranger/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ranger/commit/064c4f87 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ranger/tree/064c4f87 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ranger/diff/064c4f87 Branch: refs/heads/ranger-0.6 Commit: 064c4f87a69e4f9220ed46d8a8aff13f704664d0 Parents: 2dea1f9 Author: Mehul Parikh <[email protected]> Authored: Thu Sep 1 14:12:23 2016 +0530 Committer: Velmurugan Periasamy <[email protected]> Committed: Wed Sep 7 15:14:38 2016 -0400 ---------------------------------------------------------------------- .../src/main/webapp/scripts/views/policies/RangerPolicyForm.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/064c4f87/security-admin/src/main/webapp/scripts/views/policies/RangerPolicyForm.js ---------------------------------------------------------------------- diff --git a/security-admin/src/main/webapp/scripts/views/policies/RangerPolicyForm.js b/security-admin/src/main/webapp/scripts/views/policies/RangerPolicyForm.js index b3f7ccd..aae9c70 100644 --- a/security-admin/src/main/webapp/scripts/views/policies/RangerPolicyForm.js +++ b/security-admin/src/main/webapp/scripts/views/policies/RangerPolicyForm.js @@ -519,7 +519,7 @@ define(function(require){ setTimeout(function(){ p.abort(); console.log('connection timeout for resource path request...!!'); - }, 7000); + }, 10000); }, open : function(){ $(this).removeClass('working'); @@ -620,7 +620,7 @@ define(function(require){ url: options.lookupURL, type : 'POST', params : { - timeout: 3000, + timeout: 10000, contentType: "application/json; charset=utf-8", }, cache: false,
