This is an automated email from the ASF dual-hosted git repository.
asnaik pushed a commit to branch branch-2.7
in repository https://gitbox.apache.org/repos/asf/ambari.git
The following commit(s) were added to refs/heads/branch-2.7 by this push:
new 017a85e AMBARI-25272 (Ambari UI default Ajax Timeout is 3 minutes but
some operations in server can take more than that) (asnaik) (#2966)
017a85e is described below
commit 017a85e2bdd8a148c4daaf25870f0066c052a97d
Author: Akhil S Naik <[email protected]>
AuthorDate: Tue May 7 11:23:36 2019 +0530
AMBARI-25272 (Ambari UI default Ajax Timeout is 3 minutes but some
operations in server can take more than that) (asnaik) (#2966)
---
ambari-web/app/config.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ambari-web/app/config.js b/ambari-web/app/config.js
index c5bf5f0..496794a 100644
--- a/ambari-web/app/config.js
+++ b/ambari-web/app/config.js
@@ -32,7 +32,7 @@ App.defaultStackVersion = 'HDP-2.3';
App.defaultWindowsStackVersion = 'HDPWIN-2.1';
App.defaultJavaHome = '/usr/jdk/jdk1.6.0_31';
-App.timeout = 180000; // default AJAX timeout
+App.timeout = 300000; // default AJAX timeout
App.maxRetries = 3; // max number of retries for certain AJAX calls
App.sessionKeepAliveInterval = 60000;
App.bgOperationsUpdateInterval = 6000;