HADOOP-14841 Kms client should disconnect if unable to get output stream from connection. Contributed by Rushabh S Shah

(cherry picked from commit 4cdbdce752e192b45c2b9756c2d4bd24ceffdabd)
This commit is contained in:
Rushabh Shah 2018-05-04 15:36:13 -05:00
parent e7b5c0091d
commit d261645177

View File

@ -522,12 +522,21 @@ private <T> T call(HttpURLConnection conn, Map jsonOutput,
int expectedResponse, Class<T> klass, int authRetryCount)
throws IOException {
T ret = null;
OutputStream os = null;
try {
if (jsonOutput != null) {
writeJson(jsonOutput, conn.getOutputStream());
os = conn.getOutputStream();
writeJson(jsonOutput, os);
}
} catch (IOException ex) {
IOUtils.closeStream(conn.getInputStream());
// The payload is not serialized if getOutputStream fails.
// Calling getInputStream will issue the put/post request with no payload
// which causes HTTP 500 server error.
if (os == null) {
conn.disconnect();
} else {
IOUtils.closeStream(conn.getInputStream());
}
throw ex;
}
if ((conn.getResponseCode() == HttpURLConnection.HTTP_FORBIDDEN