Undo AsyncRestTemplate's catching of Throwable in 4.1.x

Issue: SPR-13413
Issue: SPR-12887
This commit is contained in:
Juergen Hoeller
2015-09-02 18:36:55 +02:00
parent fd2252a14e
commit de0f3aec53

View File

@@ -644,7 +644,7 @@ public class AsyncRestTemplate extends AsyncHttpAccessor implements AsyncRestOpe
}
return convertResponse(response);
}
catch (Throwable ex) {
catch (IOException ex) {
throw new ExecutionException(ex);
}
finally {