You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When code executed as future throws InterruptedException, future is not completed (neither success or failure). Await.result will block indefinitely if timeout is infinite.
It is quite typical for any concurrent code to throw InterruptedException, for example Thread.sleep() might throw one. It is extremely error prone that this type of exception is swallowed and only indication is ExecutionContext's failure report, by default printed to console.