Skip to content

Commit

Permalink
mima [stressMcas]
Browse files Browse the repository at this point in the history
  • Loading branch information
durban committed Jan 11, 2025
1 parent c31ba31 commit 3735722
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,9 @@ lazy val core = crossProject(JVMPlatform, JSPlatform)
ProblemFilters.exclude[MissingClassProblem]("dev.tauri.choam.random.OsRngPlatform"), // private
ProblemFilters.exclude[DirectMissingMethodProblem]("dev.tauri.choam.random.RxnUuidGen.this"), // private
ProblemFilters.exclude[DirectMissingMethodProblem]("dev.tauri.choam.random.SecureRandomRxn.this"), // private
ProblemFilters.exclude[DirectMissingMethodProblem]("dev.tauri.choam.core.Rxn.osRng"), // private
ProblemFilters.exclude[DirectMissingMethodProblem]("dev.tauri.choam.random.package.newSecureRandom"), // private
ProblemFilters.exclude[DirectMissingMethodProblem]("dev.tauri.choam.random.package.uuidGen"), // private
),
).jvmSettings(
mimaBinaryIssueFilters ++= Seq(
Expand Down Expand Up @@ -348,7 +351,8 @@ lazy val mcas = crossProject(JVMPlatform, JSPlatform)
ProblemFilters.exclude[DirectMissingMethodProblem]("dev.tauri.choam.internal.mcas.ThreadConfinedMCAS.isCurrentContext"),
ProblemFilters.exclude[MissingClassProblem]("dev.tauri.choam.internal.mcas.emcas.Emcas$"),
ProblemFilters.exclude[ReversedMissingMethodProblem]("dev.tauri.choam.internal.mcas.emcas.EmcasJmxStatsMBean.getMcasRetryStats"),
ProblemFilters.exclude[ReversedMissingMethodProblem]("dev.tauri.choam.internal.mcas.emcas.EmcasJmxStatsMBean.getExchangerStats")
ProblemFilters.exclude[ReversedMissingMethodProblem]("dev.tauri.choam.internal.mcas.emcas.EmcasJmxStatsMBean.getExchangerStats"),
ProblemFilters.exclude[DirectMissingMethodProblem]("dev.tauri.choam.internal.mcas.Mcas.internalEmcas"),
),
)

Expand Down

0 comments on commit 3735722

Please sign in to comment.