Matthias Kurz
Matthias Kurz
@PromanSEW Is there also no stack trace on the console or log files? Would it be possible that you put a breakpoint at this line https://github.com/playframework/playframework/blob/2.8.7/transport/server/play-server/src/main/scala/play/core/server/common/ServerResultUtils.scala#L161 and see what the...
@PromanSEW Now that we have a new release of ebean, is it possible you test this with latest Play 2.8.13?
This would need experimenting to see if something like this is even possible with the way Play's routing and action methods calls work right now. So, if I understand correctly,...
@PromanSEW Can you please provide me a reproducer? Thanks!
@Captain1653 sure. However, to be honest, such a feature isn't priority right now. Sure it would be nice to have, but there a lot of things which would be nice...
@PromanSEW Did you find out what's going on? Or did you implement a workaround? Are you 100% sure that the line ```java return redirect(routes.Application.not_found("Bla bla")); ``` is the real problem?...
BTW: I tried to reproduce with this project https://github.com/mkurz/playframework-reproducers/tree/main/playframework-11035 but I wasn't able to.
@gokhanoner Maybe I am confused, but after accessing the cache you should be back on the original thread anyway or not? Or do you want to use the ThreadLocal inside...
> ... we added symbolic methods ... but ... we should avoid this Just to make things clear, not symbolic methods should be avoided, but multi-params for this methods.
Turns out that we are missing a Java API for `Cookies.encodeCookieHeader`. Quickly fixing the above code: ```java public static RequestBuilder buildCall(Call call,Cookies cookies) { RequestBuilder retval=new RequestBuilder().method(call.method()).uri(call.url()); if (cookies!=null) for...