HDFS-7785. Improve diagnostics information for HttpPutFailedException. Contributed by Chengbing Liu.
This commit is contained in:
parent
5d0bae550f
commit
c5eac9c6fe
@ -1064,6 +1064,9 @@ Release 2.7.0 - UNRELEASED
|
||||
HDFS-6753. Initialize checkDisk when DirectoryScanner not able to get
|
||||
files list for scanning (J.Andreina via vinayakumarb)
|
||||
|
||||
HDFS-7785. Improve diagnostics information for HttpPutFailedException.
|
||||
(Chengbing Liu via wheat9)
|
||||
|
||||
BREAKDOWN OF HDFS-7584 SUBTASKS AND RELATED JIRAS
|
||||
|
||||
HDFS-7720. Quota by Storage Type API, tools and ClientNameNode
|
||||
|
@ -291,7 +291,9 @@ private static void uploadImage(URL url, Configuration conf,
|
||||
|
||||
int responseCode = connection.getResponseCode();
|
||||
if (responseCode != HttpURLConnection.HTTP_OK) {
|
||||
throw new HttpPutFailedException(connection.getResponseMessage(),
|
||||
throw new HttpPutFailedException(String.format(
|
||||
"Image uploading failed, status: %d, url: %s, message: %s",
|
||||
responseCode, urlWithParams, connection.getResponseMessage()),
|
||||
responseCode);
|
||||
}
|
||||
} catch (AuthenticationException e) {
|
||||
|
Loading…
Reference in New Issue
Block a user