Skip to content

Commit d3c97ab

Browse files
committedDec 16, 2022
Added support for baseUrl
1 parent 5902867 commit d3c97ab

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed
 

‎src/main/scala/ai/diffy/ApiController.scala

+3-3
Original file line numberDiff line numberDiff line change
@@ -160,9 +160,9 @@ class ApiController(
160160
@GetMapping(path = Array("/api/1/info"))
161161
def getInfo(): Map[String, _] = Map(
162162
"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),
166166
"relativeThreshold" -> settings.relativeThreshold,
167167
"absoluteThreshold" -> settings.absoluteThreshold,
168168
"protocol" -> "http",

‎src/main/scala/ai/diffy/Settings.scala

+6-2
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,9 @@ object Downstream {
5454
}
5555
}
5656
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+
}

0 commit comments

Comments
 (0)