This is an automated email from the ASF dual-hosted git repository.
masaori 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 2e50a2c146 Cleanup: Fix format of doc corruption message (#9725)
2e50a2c146 is described below
commit 2e50a2c146d46f254ae338f31388f72d8f6d6de7
Author: Masaori Koshiba <[email protected]>
AuthorDate: Tue May 23 07:51:25 2023 +0900
Cleanup: Fix format of doc corruption message (#9725)
---
iocore/cache/CacheRead.cc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/iocore/cache/CacheRead.cc b/iocore/cache/CacheRead.cc
index 967d1ae7ef..315dc246ec 100644
--- a/iocore/cache/CacheRead.cc
+++ b/iocore/cache/CacheRead.cc
@@ -908,7 +908,7 @@ CacheVC::openReadStartEarliest(int /* event ATS_UNUSED */,
Event * /* e ATS_UNUS
if (doc->magic == DOC_CORRUPT) {
Warning("Earliest: Doc checksum does not match for %s",
key.toHexStr(tmpstring));
} else {
- Warning("Earliest : Doc magic does not match for %s",
key.toHexStr(tmpstring));
+ Warning("Earliest: Doc magic does not match for %s",
key.toHexStr(tmpstring));
}
// remove the dir entry
dir_delete(&key, vol, &dir);
@@ -1111,7 +1111,7 @@ CacheVC::openReadStartHead(int event, Event *e)
if (doc->magic == DOC_CORRUPT) {
Warning("Head: Doc checksum does not match for %s",
key.toHexStr(tmpstring));
} else {
- Warning("Head : Doc magic does not match for %s",
key.toHexStr(tmpstring));
+ Warning("Head: Doc magic does not match for %s",
key.toHexStr(tmpstring));
}
// remove the dir entry
dir_delete(&key, vol, &dir);