Skip to content

Commit

Permalink
Merge pull request #927 from chrisgray/chrisgray/dashboard_iscircuitb…
Browse files Browse the repository at this point in the history
…reakeropen

[hystrix-dashboard] isCircuitBreakerOpen is assumed to be a boolean
  • Loading branch information
mattrjacobs committed Oct 14, 2015
2 parents c66a548 + ff5d4cf commit 3fd69e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<% } else {
/* We have some circuits that are open */
%>
Circuit <font color="orange"><%= isCircuitBreakerOpen.replace("true", "Open").replace("false", "Closed") %>)</font>
Circuit <font color="orange"><%= isCircuitBreakerOpen.toString().replace("true", "Open").replace("false", "Closed") %></font>
<% } %>
<% } %>
</div>
Expand Down

0 comments on commit 3fd69e7

Please sign in to comment.