ayushtkn commented on code in PR #5568:
URL: https://github.com/apache/hadoop/pull/5568#discussion_r1192839897
##########
hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/shortcircuit/ShortCircuitCache.java:
##########
@@ -379,13 +380,18 @@ public static ShortCircuitCache fromConf(ShortCircuitConf
conf) {
public ShortCircuitCache(int maxTotalSize, long
maxNonMmappedEvictableLifespanMs,
int maxEvictableMmapedSize, long maxEvictableMmapedLifespanMs,
long mmapRetryTimeoutMs, long staleThresholdMs, int shmInterruptCheckMs)
{
- Preconditions.checkArgument(maxTotalSize >= 0);
+ Preconditions.checkArgument(maxTotalSize >= 0,
+ "Invalid argument: maxTotalSize must be greater than zero.");
Review Comment:
No need to put Invalid Argument:, It will throw IllegalArgumentException,
that is indicative. just keep the message post Invalid argument: in all the
Preconditions.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]