Skip to content

Commit

Permalink
Fix server state incorrectly reported.
Browse files Browse the repository at this point in the history
Server state was being reported based only on inventory data. This will
report server state based on a combination of inventory data and
availability metrics, if EMS/provider features it.
  • Loading branch information
israel-hdez committed Apr 10, 2017
1 parent 540407e commit 6195fde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/helpers/middleware_server_helper/textual_summary.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def textual_bind_addr
def textual_server_state
{
:label => _('Server State'),
:value => @record.properties['Server State'].to_s.capitalize
:value => (@record.properties['Calculated Server State'] || @record.properties['Server State']).to_s.capitalize
}
end

Expand Down

0 comments on commit 6195fde

Please sign in to comment.