Added timeout for BMC reboot
Change-Id: I376c3578c68535259e4527941b0995394e3d0734
Signed-off-by: Iftekharul Islam <iislam@us.ibm.com>
diff --git a/app/index.js b/app/index.js
index f5c2692..f54aea0 100644
--- a/app/index.js
+++ b/app/index.js
@@ -36,7 +36,7 @@
});
}])
.config(['$httpProvider', function($httpProvider){
- //console.log($httpProvider.interceptors);
+ $httpProvider.defaults.timeout = 10000;
$httpProvider.interceptors.push('apiInterceptor');
}])
.run(['$rootScope', '$location', 'dataService', 'userModel',