He-Pin opened a new pull request, #839:
URL: https://github.com/apache/pekko-management/pull/839

   ### Motivation
   Scala 3.9.0-RC1 changes context bound desugaring, making explicit 
`SortedSet.empty(Member.ageOrdering)` fail with a type mismatch error where the 
`Ordering` argument is incorrectly matched against the element type.
   
   ### Modification
   Use `implicit val memberAgeOrdering: Ordering[Member] = Member.ageOrdering` 
and rely on implicit resolution for `SortedSet.empty` instead of passing the 
`Ordering` explicitly.
   
   ### Result
   `rolling-update-kubernetes` module compiles cleanly with Scala 3.9.0-RC1.
   
   ### Tests
   - `sbt "++3.9.0-RC1!; rolling-update-kubernetes/compile; 
rolling-update-kubernetes/Test/compile"` passes
   
   ### References
   None - Scala 3.9 forward compatibility


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to