Skip to content

Commit 78ba81e

Browse files
njacazioshahor02
authored andcommitted
Fix misleading comment
1 parent d944a8f commit 78ba81e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

CCDB/include/CCDB/BasicCCDBManager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ class BasicCCDBManager
115115
long mTimestamp{o2::ccdb::getCurrentTimestamp()}; // timestamp to be used for query (by default "now")
116116
bool mCanDefault = false; // whether default is ok --> useful for testing purposes done standalone/isolation
117117
bool mCachingEnabled = true; // whether caching is enabled
118-
long mCreatedNotAfter = 0; // upper limit for object validity timestamp (TimeMachine mode)
118+
long mCreatedNotAfter = 0; // upper limit for object creation timestamp (TimeMachine mode)
119119
};
120120

121121
template <typename T>

CCDB/include/CCDB/CcdbApi.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ class CcdbApi //: public DatabaseInterface
149149
* @param timestamp Timestamp of the object to retrieve. If omitted, current timestamp is used.
150150
* @param headers Map to be populated with the headers we received, if it is not null.
151151
* @param optional etag from previous call
152-
* @param optional createdNotAfter time limit for the object validity (TimeMachine mode)
152+
* @param optional createdNotAfter time limit for the object creation timestamp (TimeMachine mode)
153153
* @return the object, or nullptr if none were found.
154154
* @deprecated in favour of retrieveFromTFileAny as it is not limited to TObjects.
155155
*/
@@ -165,7 +165,7 @@ class CcdbApi //: public DatabaseInterface
165165
* @param timestamp Timestamp of the object to retrieve. If omitted, current timestamp is used.
166166
* @param headers Map to be populated with the headers we received, if it is not null.
167167
* @param optional etag from previous call
168-
* @param optional createdNotAfter time limit for the object validity (TimeMachine mode)
168+
* @param optional createdNotAfter time limit for the object creation timestamp (TimeMachine mode)
169169
* @return the object, or nullptr if none were found or type does not match serialized type.
170170
*/
171171
template <typename T>

0 commit comments

Comments
 (0)