Skip to content

Commit

Permalink
mima
Browse files Browse the repository at this point in the history
  • Loading branch information
leviramsey committed Feb 7, 2025
1 parent e1a5c75 commit 3c6f7cd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
ProblemFilters.exclude[DirectAbstractMethodProblem]("akka.discovery.ServiceDiscovery.lookup")

# private class changed enclosing object
ProblemFilters.exclude[MissingClassProblem]("akka.discovery.kubernetes.KubernetesApiServiceDiscovery$KubernetesSetup")
ProblemFilters.exclude[MissingClassProblem]("akka.discovery.kubernetes.KubernetesApiServiceDiscovery$KubernetesSetup$")

# InternalAPI
ProblemFilters.exclude[DirectMissingMethodProblem]("akka.discovery.kubernetes.PodList#PodStatus.copy")
ProblemFilters.exclude[DirectMissingMethodProblem]("akka.discovery.kubernetes.PodList#PodStatus.this")
ProblemFilters.exclude[MissingTypesProblem]("akka.discovery.kubernetes.PodList$PodStatus$")
ProblemFilters.exclude[DirectMissingMethodProblem]("akka.discovery.kubernetes.PodList#PodStatus.apply")
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import scala.util.control.NonFatal

import akka.actor.ActorSystem
import akka.annotation.InternalApi
import akka.annotation.DoNotInherit
import akka.discovery.ServiceDiscovery.Resolved
import akka.discovery.ServiceDiscovery.ResolvedTarget
import akka.discovery._
Expand Down Expand Up @@ -111,7 +112,9 @@ object BaseKubernetesApiServiceDiscovery {
/**
* Discovery implementation that uses the Kubernetes API.
*
* Not for user extension
*/
@DoNotInherit
sealed abstract class BaseKubernetesApiServiceDiscovery(protected val log: LoggingAdapter)(implicit system: ActorSystem)
extends ServiceDiscovery {

Expand Down

0 comments on commit 3c6f7cd

Please sign in to comment.