From 2a299882819bb91c9bfdf8ce11537792620b9163 Mon Sep 17 00:00:00 2001 From: elega <445092967@qq.com> Date: Fri, 6 Sep 2024 20:35:49 +0800 Subject: [PATCH] Fix wording ### What changes are proposed in this pull request? Please outline the changes and how this PR fixes the issue. ### Why are the changes needed? Please clarify why the changes are needed. For instance, 1. If you propose a new API, clarify the use case for a new API. 2. If you fix a bug, describe the bug. ### Does this PR introduce any user facing changes? Please list the user-facing changes introduced by your change, including 1. change in user-facing APIs 2. addition or removal of property keys 3. webui pr-link: Alluxio/alluxio#18691 change-id: cid-e6e2f314680fe4d2b5e7ddee08348a2a4c44825b --- .../java/alluxio/cli/fs/command/CRC64CheckCommandUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/src/main/java/alluxio/cli/fs/command/CRC64CheckCommandUtils.java b/shell/src/main/java/alluxio/cli/fs/command/CRC64CheckCommandUtils.java index ed666ce7200c..add0da46f7f1 100644 --- a/shell/src/main/java/alluxio/cli/fs/command/CRC64CheckCommandUtils.java +++ b/shell/src/main/java/alluxio/cli/fs/command/CRC64CheckCommandUtils.java @@ -89,7 +89,7 @@ public static long calculateAlluxioCRC64( throw new IllegalStateException("The path is a folder"); } if (status.getInAlluxioPercentage() != 100) { - throw new IllegalStateException("The file is not cached in alluxio"); + throw new IllegalStateException("The file is not fully cached in alluxio"); } List blockLocationInfoList = fileSystem.getBlockLocations(status); Map> blockIdsOnWorkers = new HashMap<>();