HADOOP-14658. branch-2 compilation is broken in hadoop-azure

Contributed by Sunil G.

Signed-off-by: Steve Loughran <stevel@apache.org>
This commit is contained in:
Steve Loughran 2017-07-13 18:25:38 +01:00
parent cbb5f601f1
commit df69b13b47
No known key found for this signature in database
GPG Key ID: 950CC3E032B79CA2
1 changed files with 2 additions and 1 deletions

View File

@ -21,6 +21,7 @@ package org.apache.hadoop.fs.azure;
import com.google.common.annotations.VisibleForTesting;
import org.apache.hadoop.fs.azure.security.Constants;
import org.apache.hadoop.io.retry.RetryPolicy;
import org.apache.hadoop.util.StringUtils;
import org.apache.http.Header;
import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
@ -190,7 +191,7 @@ public class WasbRemoteCallHelper {
: urls[index]);
} catch (IOException ioex) {
String message =
"Encountered error while making remote call to " + String
"Encountered error while making remote call to " + StringUtils
.join(",", urls) + " retried " + retry + " time(s).";
LOG.error(message, ioex);
throw new WasbRemoteCallException(message, ioex);