mdedetrich commented on PR #1068: URL: https://github.com/apache/incubator-pekko/pull/1068#issuecomment-1913731732
Ah I think I know what the problem is, Pekko Http 1.1.x is not being compiled against Pekko 1.1.x but instead Pekko 1.0.x and because Pekko 1.0.x doesn't have the `inline` keyword it didn't get inlined within Pekko Http 1.1.x so Pekko Http 1.1.x is still expecting the inline methods to exist in bytecode but they don't because they are being stripped. Ill have to think about this, worst case scenario is that we have to remove all the Scala 3 inline keywords -- 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]
