Skip to content

Commit

Permalink
eval: remove legacy eureka-uri property (#1725)
Browse files Browse the repository at this point in the history
Uses have migrated to edda-uri.
  • Loading branch information
brharrington authored Nov 19, 2024
1 parent 3210344 commit 80490bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ private[stream] class StreamContext(
config.getConfigList("backends").asScala.toList.map { cfg =>
// URI for Edda service. For backwards compatibility Eureka name is also
// checked.
val eddaUri = cfg.getString(if (cfg.hasPath("edda-uri")) "edda-uri" else "eureka-uri")
val eddaUri = cfg.getString("edda-uri")
val checkForExpensiveQueries = isNotFalse(cfg, "check-for-expensive-queries")
EddaBackend(
cfg.getString("host"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ object TestContext {
| backends = [
| {
| host = "localhost"
| eureka-uri = "http://localhost:7102/v2/vips/local-dev:7001"
| edda-uri = "http://localhost:7102/v2/vips/local-dev:7001"
| instance-uri = "http://{host}:{port}"
| },
| {
Expand Down

0 comments on commit 80490bc

Please sign in to comment.