diff --git a/public/services/resolves/settings-wizard.js b/public/services/resolves/settings-wizard.js index eb862f372..836b61198 100644 --- a/public/services/resolves/settings-wizard.js +++ b/public/services/resolves/settings-wizard.js @@ -11,11 +11,14 @@ */ import checkTimestamp from './check-timestamp' import healthCheck from './health-check' +import totalRAM from './check-ram' export default ($rootScope, $location, $q, $window, testAPI, appState, genericReq, errorHandler) => { try { const deferred = $q.defer(); + totalRAM(genericReq,errorHandler); + // Save current location if we aren't performing a health-check, to later be able to come back to the same tab if (!$location.path().includes("/health-check")) { $rootScope.previousLocation = $location.path();