We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85d4143 commit 081240bCopy full SHA for 081240b
1 file changed
CCDB/include/CCDB/BasicCCDBManager.h
@@ -64,8 +64,8 @@ class CCDBManagerInstance
64
bool isValid(long ts) { return ts < endvalidity && ts >= startvalidity; }
65
bool isCacheValid(long ts)
66
{
67
- LOGP(debug, "isCacheValid : {} : {} : {} --> {}", cacheValidFrom, ts, cacheValidUntil, ts < cacheValidUntil && ts >= cacheValidFrom);
68
- return ts < cacheValidUntil && ts >= cacheValidFrom;
+ LOGP(debug, "isCacheValid : {} : {} : {} --> {}", cacheValidFrom, ts, cacheValidUntil, isValid(ts));
+ return ts < cacheValidUntil && isValid(ts);
69
}
70
void clear()
71
0 commit comments