aboutsummaryrefslogtreecommitdiff
path: root/other/java/client
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2024-01-22 12:53:44 -0800
committerchrislu <chris.lu@gmail.com>2024-01-22 12:53:44 -0800
commit439377b7a084242e2a1347538c6692e9a6e527a8 (patch)
tree45254e6fe88ec5d61b33736939a925320c205377 /other/java/client
parent2158e163f7459bbd8e5a9c16023e38b00e1b6a68 (diff)
downloadseaweedfs-439377b7a084242e2a1347538c6692e9a6e527a8.tar.xz
seaweedfs-439377b7a084242e2a1347538c6692e9a6e527a8.zip
adjust exception text
Diffstat (limited to 'other/java/client')
-rw-r--r--other/java/client/src/main/java/seaweedfs/client/SeaweedRead.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/other/java/client/src/main/java/seaweedfs/client/SeaweedRead.java b/other/java/client/src/main/java/seaweedfs/client/SeaweedRead.java
index 031e904d2..23fb14ebb 100644
--- a/other/java/client/src/main/java/seaweedfs/client/SeaweedRead.java
+++ b/other/java/client/src/main/java/seaweedfs/client/SeaweedRead.java
@@ -69,7 +69,7 @@ public class SeaweedRead {
if (locations == null || locations.getLocationsCount() == 0) {
LOG.error("failed to locate {}", chunkView.fileId);
volumeIdCache.clearLocations(volumeId);
- throw new IOException("failed to locate file");
+ throw new IOException("failed to locate fileId " + chunkView.fileId);
}
int len = readChunkView(filerClient, startOffset, buf, chunkView, locations);