Johan Vosloo

Results 12 comments of Johan Vosloo

I can confirm this is still the case in 1.5.1. If you do a WS post (ie sync call)... a timeout exception is thrown after 60s, regardless how much longer...

Oh. I know what the issue is. The underlying AsyncHttpClient exposes a **request** timeout method: `asyncHttpClient.preparePost(url).setRequestTimeout(120)` which is wrapped and exposed by Play and used like so: `WS.url(url).timeout("120s")` However, if...