diff --git a/iocore/hostdb/P_RefCountCache.h b/iocore/hostdb/P_RefCountCache.h index b6b67be5ee1..fcb09aed335 100644 --- a/iocore/hostdb/P_RefCountCache.h +++ b/iocore/hostdb/P_RefCountCache.h @@ -611,7 +611,7 @@ LoadRefCountCacheFromPath(RefCountCache &cache, const std::strin CacheEntryType *newItem = load_func((char *)&buf, tmpValue.size); if (newItem != nullptr) { - cache.put(tmpValue.key, newItem, tmpValue.size - sizeof(CacheEntryType)); + cache.put(tmpValue.key, newItem, tmpValue.size - sizeof(CacheEntryType), tmpValue.expiry_time); } };