This is an automated email from the ASF dual-hosted git repository.
mochen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 30f8a7e854 Upgrade disk error message to an error (#10626)
30f8a7e854 is described below
commit 30f8a7e854bf030dea543dfa4171c0ded62bcb4d
Author: Mo Chen <[email protected]>
AuthorDate: Mon Oct 23 18:10:04 2023 -0500
Upgrade disk error message to an error (#10626)
---
src/iocore/cache/CacheVC.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/iocore/cache/CacheVC.cc b/src/iocore/cache/CacheVC.cc
index a023298617..4552389a7c 100644
--- a/src/iocore/cache/CacheVC.cc
+++ b/src/iocore/cache/CacheVC.cc
@@ -349,7 +349,7 @@ CacheVC::handleReadDone(int event, Event *e)
}
if (DISK_BAD(vol->disk)) {
io.aio_result = -1;
- Warning("Canceling cache read: disk %s is bad.", vol->hash_text.get());
+ Error("Canceling cache read: disk %s is bad.", vol->hash_text.get());
goto Ldone;
}
{