Skip to content

Commit

Permalink
DEOPSOSWMG-139: Fixed warnings, updated CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
abrighton committed Jan 14, 2025
1 parent e57b40b commit edb42ef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ All notable changes to this project will be documented in this file.
- Upgraded to Scala-3, JDK-21
- Replaced use of akka libraries with org.apache.pekko
- Added some supporting methods for Java for JSON serialization of the coordinate classes in csw.params.core.formats.JsonSupport
- Replaced embedded-redis lib with a different version that supports recent MacOS versions (for testing)

## [CSW v5.0.1] - 2023-04-12
This is the final release version v5.0.1 of the TMT Common Software for project stakeholders.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ class CommandServiceTest(ignore: Int)
val commandResponse = Await.result(matchResponseF, timeout.duration)
commandResponse shouldBe a[Completed]

val onewayMatchF: Future[SubmitResponse with MatchingResponse] = async {
val onewayMatchF: Future[SubmitResponse & MatchingResponse] = async {
await(assemblyCmdService.onewayAndMatch(setupWithMatcher, demandMatcher)) match {
case i: Invalid =>
// Command was not accepted
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import org.scalatest.BeforeAndAfterAll
import scala.util.Try

trait MultiNodeHTTPLocationService {
self: LSNodeSpec[_] with BeforeAndAfterAll =>
self: LSNodeSpec[?] & BeforeAndAfterAll =>
private val maybeBinding: Option[Http.ServerBinding] = Try {
val clusterSettings = ClusterSettings.make(self.typedSystem)
val binding = ServerWiring.make(clusterSettings, enableAuth = false).locationHttpService.start()
Expand Down

0 comments on commit edb42ef

Please sign in to comment.