In some situations, a dashboard app may not retrieve information.
May also be seen as "#ERROR: communication failure"
Release : SAAS
Component : AGILE CENTRAL
This can sometimes be caused due to the app SDK timing out connections after 30 seconds. This can be confirmed by viewing the developer tools and looking for a request in red that shows (canceled) as shown below
**In some cases, the request status may show Finished with a Time value showing approximately 30 seconds
It is possible to override the default 30 second timeout. Here is an example how to perform that.
Rally.onReady(function () {
Ext.override(Ext.data.proxy.Server, { timeout: 60000 });
Ext.define('CustomApp', {
...
});
}
Please note that support can not provide any further support on implementing this change other than what is contained in this article