File tree 2 files changed +9
-5
lines changed
2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -160,9 +160,9 @@ class ApiController(
160
160
@ GetMapping (path = Array (" /api/1/info" ))
161
161
def getInfo (): Map [String , _] = Map (
162
162
" name" -> settings.serviceName,
163
- " candidate" -> httpServiceToMap(s " ${ settings.candidateHost} : ${settings.candidatePort} " ),
164
- " primary" -> httpServiceToMap(s " ${ settings.primaryHost} : ${settings.primaryPort} " ),
165
- " secondary" -> httpServiceToMap(s " ${ settings.secondaryHost} : ${settings.secondaryPort} " ),
163
+ " candidate" -> httpServiceToMap(settings.candidate.toString ),
164
+ " primary" -> httpServiceToMap(settings.primary.toString ),
165
+ " secondary" -> httpServiceToMap(settings.secondary.toString ),
166
166
" relativeThreshold" -> settings.relativeThreshold,
167
167
" absoluteThreshold" -> settings.absoluteThreshold,
168
168
" protocol" -> " http" ,
Original file line number Diff line number Diff line change @@ -54,5 +54,9 @@ object Downstream {
54
54
}
55
55
}
56
56
sealed trait Downstream
57
- case class HostPort (host : String , port : Int ) extends Downstream
58
- case class BaseUrl (baseUrl : String ) extends Downstream
57
+ case class HostPort (host : String , port : Int ) extends Downstream {
58
+ override def toString : String = s " ${host}: ${port}"
59
+ }
60
+ case class BaseUrl (baseUrl : String ) extends Downstream {
61
+ override def toString : String = baseUrl
62
+ }
You can’t perform that action at this time.
0 commit comments