Skip to content

Commit

Permalink
Merge pull request #1488 from scalacenter/update/elastic4s-client-esj…
Browse files Browse the repository at this point in the history
…ava-8.15.3

Update elastic4s-client-esjava to 8.15.3
  • Loading branch information
adpi2 authored Nov 19, 2024
2 parents 416187a + 80507fa commit 198fb3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ lazy val V = new {
val playJson = "2.9.4"
val pekko = "1.1.2"
val pekkoHttp = "1.1.0"
val elastic4s = "8.13.1"
val elastic4s = "8.15.3"
val nscalaTime = "2.34.0"
val scalatest = "3.2.19"
val circe = "0.14.10"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package scaladex.infra

import java.io.Closeable

import scala.annotation.nowarn
import scala.concurrent.ExecutionContext
import scala.concurrent.Future
import scala.concurrent.duration._
Expand Down Expand Up @@ -271,7 +270,7 @@ class ElasticsearchEngine(esClient: ElasticClient, index: String)(implicit ec: E
.toSeq
.flatMap(_.hits)
.flatMap { hit =>
val source = SourceAsContentBuilder(hit.source).string: @nowarn("cat=deprecation")
val source = SourceAsContentBuilder(hit.source).string
parser.decode[GithubIssue](source) match {
case Right(issue) => Some(issue)
case Left(_) =>
Expand Down

0 comments on commit 198fb3f

Please sign in to comment.