changed Quiesced term to Standby based on feedback
Change-Id: I8f02249ccdfd0eaddc6c7e566335b706b9542959
Signed-off-by: Michael Davis <michael.s.davis@ibm.com>
diff --git a/app/common/directives/app-header.html b/app/common/directives/app-header.html
index 54b09f9..4513b92 100644
--- a/app/common/directives/app-header.html
+++ b/app/common/directives/app-header.html
@@ -18,7 +18,7 @@
<a href="#/server-health/event-log" class="header__server-health">Server health
<i class="icon icon-angle" aria-hidden="true"></i><span ng-class="{'status-light__error': dataService.server_health == 'Critical', 'status-light__warn': dataService.server_health == 'Warning', 'status-light__good': dataService.server_health == 'Good'}">{{dataService.server_health}}</span></a>
<a href="#/server-control/power-operations" class="header__server-power" role="button">Server power
- <i class="icon icon-angle" aria-hidden="true"></i><span ng-class="{'status-light__off': dataService.server_state == 'Off', 'status-light__disabled': dataService.server_state == 'Unreachable', 'status-light__good': dataService.server_state == 'Running', 'status-light__warn': dataService.server_state == 'Quiesced'}">{{dataService.server_state}}</span></a>
+ <i class="icon icon-angle" aria-hidden="true"></i><span ng-class="{'status-light__off': dataService.server_state == 'Off', 'status-light__disabled': dataService.server_state == 'Unreachable', 'status-light__good': dataService.server_state == 'Running', 'status-light__warn': dataService.server_state == 'Standby'}">{{dataService.server_state}}</span></a>
<p class="header__refresh">Data last refreshed<span>{{dataService.last_updated |date:'h:mm:ss MMM dd yyyy'}}</span>
</p>
<button class="header__page-refresh" ng-click="refresh()" aria-label="refresh page data">
diff --git a/app/common/services/constants.js b/app/common/services/constants.js
index 7ffbd82..6418c32 100644
--- a/app/common/services/constants.js
+++ b/app/common/services/constants.js
@@ -20,7 +20,7 @@
password: "testpass",
},
API_CREDENTIALS: {
- host: 'https://9.3.181.64',
+ host: 'https://9.3.185.161',
mock_host: 'http://localhost:3000'
},
API_RESPONSE: {
@@ -36,7 +36,7 @@
HOST_STATE_TEXT: {
on: 'Running',
off: 'Off',
- booting: 'Quiesced',
+ booting: 'Standby',
unreachable: 'Unreachable'
},
HOST_STATE: {
@@ -103,4 +103,4 @@
};
});
-})(window.angular);
\ No newline at end of file
+})(window.angular);