StandardServletAsyncWebRequest handling for onError

This change ensures that an onError outcome from an async request is
also routed to onCompletion handlers registered with
StandardServletAsyncWebRequest.

Issue: SPR-13292
This commit is contained in:
Rossen Stoyanchev
2015-07-30 10:50:57 -04:00
parent 24285956a5
commit 27cd87926a
2 changed files with 27 additions and 1 deletions

View File

@@ -134,6 +134,7 @@ public class StandardServletAsyncWebRequest extends ServletWebRequest implements
@Override
public void onError(AsyncEvent event) throws IOException {
onComplete(event);
}
@Override