masaori335 commented on code in PR #11945: URL: https://github.com/apache/trafficserver/pull/11945#discussion_r2149013206
########## src/iocore/cache/Cache.cc: ########## @@ -342,7 +342,7 @@ Cache::open_read(Continuation *cont, const CacheKey *key, CacheFragType type, st CacheVC *c = nullptr; { CACHE_TRY_LOCK(lock, stripe->mutex, mutex->thread_holding); - if (!lock.is_locked() || (od = stripe->open_read(key)) || dir_probe(key, stripe, &result, &last_collision)) { + if (!lock.is_locked() || (od = stripe->open_read(key)) || stripe->directory.probe(key, stripe, &result, &last_collision)) { Review Comment: Note for later refactoring: this can be like this? ``` stripe->dir_probe(key, &result, &last_collision) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@trafficserver.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org