goiri commented on a change in pull request #3634:
URL: https://github.com/apache/hadoop/pull/3634#discussion_r746875360
##########
File path:
hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/Quota.java
##########
@@ -50,7 +50,7 @@ public static Counts newInstance() {
* The quota is violated if quota is set and usage > quota.
*/
public static boolean isViolated(final long quota, final long usage) {
- return quota >= 0 && usage > quota;
+ return quota >= 0 && usage >= quota;
Review comment:
I think this should be a general HDFS JIRA and then we could add tests
for RBF later.
--
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]