Skip to content

Commit

Permalink
Force isCircuitBreakerOpen to String (if it's a Boolean for example)
Browse files Browse the repository at this point in the history
  • Loading branch information
spencergibb committed Oct 19, 2015
1 parent cd30bea commit 248732e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,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 248732e

Please sign in to comment.