Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-cloud-netflix
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
spring-cloud-netflix
Commits
248732e6
Commit
248732e6
authored
Oct 14, 2015
by
Spencer Gibb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Force isCircuitBreakerOpen to String (if it's a Boolean for example)
see
https://github.com/Netflix/Hystrix/pull/927
parent
cd30bea0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
hystrixCircuit.html
...x/components/hystrixCommand/templates/hystrixCircuit.html
+1
-1
No files found.
spring-cloud-netflix-hystrix-dashboard/src/main/resources/static/hystrix/components/hystrixCommand/templates/hystrixCircuit.html
View file @
248732e6
...
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment