ソースを参照

HADOOP-15533. Make WASB listStatus messages consistent. Contributed by Esfandiar Manii

(cherry picked from commit f34744603ee93e082e7ba148df1400af5ac7c30c)
Chris Douglas 6 年 前
コミット
7e655b642d

+ 1 - 1
hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/NativeAzureFileSystem.java

@@ -2886,7 +2886,7 @@ public class NativeAzureFileSystem extends FileSystem {
       // There is no metadata found for the path.
       LOG.debug("Did not find any metadata for path: {}", key);
 
-      throw new FileNotFoundException("File" + f + " does not exist.");
+      throw new FileNotFoundException(f + " is not found");
     }
 
     return status.toArray(new FileStatus[0]);