Matthias Kurz
Matthias Kurz
Thanks for the report! @PromanSEW what do you think? Can you take a look? BTW: This whole -RC versioning thing is a bit of a mess. I did that because...
@felipebonezi Look at [this code from Play](https://github.com/playframework/playframework/blob/2.8.8/persistence/play-jdbc-evolutions/src/main/scala/play/api/db/evolutions/EvolutionsApi.scala#L525-L533): ```scala val evolution = { // First try a file on the filesystem val filename = Evolutions.fileName(db, paddedRevision) environment.getExistingFile(filename).map(_.toURI) }.orElse { // If...
Also, because (depending if `PlayLayoutPlugin` is enable dor not) the `conf` folder or `src/main/resources` gets added to the classpath, so that fallback should be able to read the file, no...
@almothafar I just released play-ebean 6.2.0-RC4, please have a look at the release notes how to upgrade: https://github.com/playframework/play-ebean/releases/tag/6.2.0-RC4. Please let me know if this problem you reported here is fixed...
@hedecai Why do you add the shutdown hook? AFAIK Play actually already does takes care of that and shuts down logback.
Actually I also think this problem is a classloder problem, probably only occuring in dev mode.
@renatocaval Are you sure this is fixed? This has nothing to do with my evolution fixes. As I understand it this is a problem with ebean generating procedures and within...
This is fixed now with latest play-ebean, because it upgrades ebean to version `11.45.1`: #192 Starting with that ebean version no stored procedure will be generated automatically anymore by default:...
Actually it should be doable to add another server backend. You find the current backends here: https://github.com/playframework/playframework/tree/main/transport/server That should give you a good starting point on how to add the...
Aaarghh... Turns out there is a bug in akka-http when http2 is enabled (which is for the TestSuite): https://github.com/akka/akka-http/issues/3959 I was bumping my head against the wall already why I...